| 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 1114 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1125 #if defined(OS_MACOSX) | 1125 #if defined(OS_MACOSX) |
| 1126 // Enables the tabs expose feature ( http://crbug.com/50307 ). | 1126 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
| 1127 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; | 1127 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
| 1128 #endif | 1128 #endif |
| 1129 | 1129 |
| 1130 #if !defined(OS_MACOSX) | 1130 #if !defined(OS_MACOSX) |
| 1131 // Enable Kiosk mode. | 1131 // Enable Kiosk mode. |
| 1132 const char kKioskMode[] = "kiosk"; | 1132 const char kKioskMode[] = "kiosk"; |
| 1133 #endif | 1133 #endif |
| 1134 | 1134 |
| 1135 // Enables the experimental global gnome menu. | |
| 1136 #if defined(TOOLKIT_GTK) | |
| 1137 extern const char kGlobalGnomeMenu[] = "global-gnome-menu"; | |
| 1138 #endif | |
| 1139 | |
| 1140 // Enables debug paint in views framework. Enabling this causes the damaged | 1135 // Enables debug paint in views framework. Enabling this causes the damaged |
| 1141 // region being painted to flash in red. | 1136 // region being painted to flash in red. |
| 1142 #if defined(TOOLKIT_VIEWS) | 1137 #if defined(TOOLKIT_VIEWS) |
| 1143 const char kDebugViewsPaint[] = "debug-views-paint"; | 1138 const char kDebugViewsPaint[] = "debug-views-paint"; |
| 1144 #endif | 1139 #endif |
| 1145 | 1140 |
| 1146 // Debug only switch to prevent the mouse cursor from disappearing when | 1141 // Debug only switch to prevent the mouse cursor from disappearing when |
| 1147 // touch is enabled | 1142 // touch is enabled |
| 1148 #if defined(TOUCH_UI) | 1143 #if defined(TOUCH_UI) |
| 1149 const char kKeepMouseCursor[] = "keep-mouse-cursor"; | 1144 const char kKeepMouseCursor[] = "keep-mouse-cursor"; |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1192 | 1187 |
| 1193 // ----------------------------------------------------------------------------- | 1188 // ----------------------------------------------------------------------------- |
| 1194 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1189 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1195 // | 1190 // |
| 1196 // You were going to just dump your switches here, weren't you? Instead, | 1191 // You were going to just dump your switches here, weren't you? Instead, |
| 1197 // please put them in alphabetical order above, or in order inside the | 1192 // please put them in alphabetical order above, or in order inside the |
| 1198 // appropriate ifdef at the bottom. The order should match the header. | 1193 // appropriate ifdef at the bottom. The order should match the header. |
| 1199 // ----------------------------------------------------------------------------- | 1194 // ----------------------------------------------------------------------------- |
| 1200 | 1195 |
| 1201 } // namespace switches | 1196 } // namespace switches |
| OLD | NEW |