| 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 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 1139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 // Bypass the error dialog when the profile lock couldn't be attained. | 1150 // Bypass the error dialog when the profile lock couldn't be attained. |
| 1151 // This switch is used during automated testing. | 1151 // This switch is used during automated testing. |
| 1152 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; | 1152 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; |
| 1153 | 1153 |
| 1154 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1154 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1155 // Specifies which password store to use (detect, default, gnome, kwallet). | 1155 // Specifies which password store to use (detect, default, gnome, kwallet). |
| 1156 const char kPasswordStore[] = "password-store"; | 1156 const char kPasswordStore[] = "password-store"; |
| 1157 #endif | 1157 #endif |
| 1158 #endif | 1158 #endif |
| 1159 | 1159 |
| 1160 #if defined(OS_MACOSX) |
| 1161 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
| 1162 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
| 1163 #endif |
| 1164 |
| 1160 #if !defined(OS_MACOSX) | 1165 #if !defined(OS_MACOSX) |
| 1161 // Enable Kiosk mode. | 1166 // Enable Kiosk mode. |
| 1162 const char kKioskMode[] = "kiosk"; | 1167 const char kKioskMode[] = "kiosk"; |
| 1163 #endif | 1168 #endif |
| 1164 | 1169 |
| 1165 // Enables debug paint in views framework. Enabling this causes the damaged | 1170 // Enables debug paint in views framework. Enabling this causes the damaged |
| 1166 // region being painted to flash in red. | 1171 // region being painted to flash in red. |
| 1167 #if defined(TOOLKIT_VIEWS) | 1172 #if defined(TOOLKIT_VIEWS) |
| 1168 const char kDebugViewsPaint[] = "debug-views-paint"; | 1173 const char kDebugViewsPaint[] = "debug-views-paint"; |
| 1169 #endif | 1174 #endif |
| (...skipping 22 matching lines...) Expand all Loading... |
| 1192 | 1197 |
| 1193 // ----------------------------------------------------------------------------- | 1198 // ----------------------------------------------------------------------------- |
| 1194 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1199 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1195 // | 1200 // |
| 1196 // You were going to just dump your switches here, weren't you? Instead, | 1201 // 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 | 1202 // please put them in alphabetical order above, or in order inside the |
| 1198 // appropriate ifdef at the bottom. The order should match the header. | 1203 // appropriate ifdef at the bottom. The order should match the header. |
| 1199 // ----------------------------------------------------------------------------- | 1204 // ----------------------------------------------------------------------------- |
| 1200 | 1205 |
| 1201 } // namespace switches | 1206 } // namespace switches |
| OLD | NEW |