| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
| 6 | 6 |
| 7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
| 8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
| 9 | 9 |
| 10 namespace switches { | 10 namespace switches { |
| (...skipping 1091 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1102 #if defined(OS_MACOSX) | 1102 #if defined(OS_MACOSX) |
| 1103 // Enables the tabs expose feature ( http://crbug.com/50307 ). | 1103 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
| 1104 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; | 1104 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
| 1105 #endif | 1105 #endif |
| 1106 | 1106 |
| 1107 #if !defined(OS_MACOSX) | 1107 #if !defined(OS_MACOSX) |
| 1108 // Enable Kiosk mode. | 1108 // Enable Kiosk mode. |
| 1109 const char kKioskMode[] = "kiosk"; | 1109 const char kKioskMode[] = "kiosk"; |
| 1110 #endif | 1110 #endif |
| 1111 | 1111 |
| 1112 // Enables the experimental global gnome menu. | |
| 1113 #if defined(TOOLKIT_GTK) | |
| 1114 extern const char kGlobalGnomeMenu[] = "global-gnome-menu"; | |
| 1115 #endif | |
| 1116 | |
| 1117 // Enables debug paint in views framework. Enabling this causes the damaged | 1112 // Enables debug paint in views framework. Enabling this causes the damaged |
| 1118 // region being painted to flash in red. | 1113 // region being painted to flash in red. |
| 1119 #if defined(TOOLKIT_VIEWS) | 1114 #if defined(TOOLKIT_VIEWS) |
| 1120 const char kDebugViewsPaint[] = "debug-views-paint"; | 1115 const char kDebugViewsPaint[] = "debug-views-paint"; |
| 1121 #endif | 1116 #endif |
| 1122 | 1117 |
| 1123 // Debug only switch to prevent the mouse cursor from disappearing when | 1118 // Debug only switch to prevent the mouse cursor from disappearing when |
| 1124 // touch is enabled | 1119 // touch is enabled |
| 1125 #if defined(TOUCH_UI) | 1120 #if defined(TOUCH_UI) |
| 1126 const char kKeepMouseCursor[] = "keep-mouse-cursor"; | 1121 const char kKeepMouseCursor[] = "keep-mouse-cursor"; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1169 | 1164 |
| 1170 // ----------------------------------------------------------------------------- | 1165 // ----------------------------------------------------------------------------- |
| 1171 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1166 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1172 // | 1167 // |
| 1173 // You were going to just dump your switches here, weren't you? Instead, | 1168 // You were going to just dump your switches here, weren't you? Instead, |
| 1174 // please put them in alphabetical order above, or in order inside the | 1169 // please put them in alphabetical order above, or in order inside the |
| 1175 // appropriate ifdef at the bottom. The order should match the header. | 1170 // appropriate ifdef at the bottom. The order should match the header. |
| 1176 // ----------------------------------------------------------------------------- | 1171 // ----------------------------------------------------------------------------- |
| 1177 | 1172 |
| 1178 } // namespace switches | 1173 } // namespace switches |
| OLD | NEW |