| 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 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1106 #if defined(OS_MACOSX) | 1106 #if defined(OS_MACOSX) |
| 1107 // Enables the tabs expose feature ( http://crbug.com/50307 ). | 1107 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
| 1108 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; | 1108 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
| 1109 #endif | 1109 #endif |
| 1110 | 1110 |
| 1111 #if !defined(OS_MACOSX) | 1111 #if !defined(OS_MACOSX) |
| 1112 // Enable Kiosk mode. | 1112 // Enable Kiosk mode. |
| 1113 const char kKioskMode[] = "kiosk"; | 1113 const char kKioskMode[] = "kiosk"; |
| 1114 #endif | 1114 #endif |
| 1115 | 1115 |
| 1116 // Enables the experimental global gnome menu. |
| 1117 #if defined(TOOLKIT_GTK) |
| 1118 extern const char kGlobalGnomeMenu[] = "global-gnome-menu"; |
| 1119 #endif |
| 1120 |
| 1116 // Enables debug paint in views framework. Enabling this causes the damaged | 1121 // Enables debug paint in views framework. Enabling this causes the damaged |
| 1117 // region being painted to flash in red. | 1122 // region being painted to flash in red. |
| 1118 #if defined(TOOLKIT_VIEWS) | 1123 #if defined(TOOLKIT_VIEWS) |
| 1119 const char kDebugViewsPaint[] = "debug-views-paint"; | 1124 const char kDebugViewsPaint[] = "debug-views-paint"; |
| 1120 #endif | 1125 #endif |
| 1121 | 1126 |
| 1122 // Debug only switch to prevent the mouse cursor from disappearing when | 1127 // Debug only switch to prevent the mouse cursor from disappearing when |
| 1123 // touch is enabled | 1128 // touch is enabled |
| 1124 #if defined(TOUCH_UI) | 1129 #if defined(TOUCH_UI) |
| 1125 const char kKeepMouseCursor[] = "keep-mouse-cursor"; | 1130 const char kKeepMouseCursor[] = "keep-mouse-cursor"; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1168 | 1173 |
| 1169 // ----------------------------------------------------------------------------- | 1174 // ----------------------------------------------------------------------------- |
| 1170 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1175 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1171 // | 1176 // |
| 1172 // You were going to just dump your switches here, weren't you? Instead, | 1177 // You were going to just dump your switches here, weren't you? Instead, |
| 1173 // please put them in alphabetical order above, or in order inside the | 1178 // please put them in alphabetical order above, or in order inside the |
| 1174 // appropriate ifdef at the bottom. The order should match the header. | 1179 // appropriate ifdef at the bottom. The order should match the header. |
| 1175 // ----------------------------------------------------------------------------- | 1180 // ----------------------------------------------------------------------------- |
| 1176 | 1181 |
| 1177 } // namespace switches | 1182 } // namespace switches |
| OLD | NEW |