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 1182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1193 const char kCandidateWindowLang[] = "lang"; | 1193 const char kCandidateWindowLang[] = "lang"; |
1194 | 1194 |
1195 // Indicates that the browser is in "browse without sign-in" (Guest session) | 1195 // Indicates that the browser is in "browse without sign-in" (Guest session) |
1196 // mode. Should completely disable extensions, sync and bookmarks. | 1196 // mode. Should completely disable extensions, sync and bookmarks. |
1197 const char kGuestSession[] = "bwsi"; | 1197 const char kGuestSession[] = "bwsi"; |
1198 | 1198 |
1199 // Indicates that stub implementations of the libcros library should be used. | 1199 // Indicates that stub implementations of the libcros library should be used. |
1200 // This is typically used to test the chromeos build of chrome on the desktop. | 1200 // This is typically used to test the chromeos build of chrome on the desktop. |
1201 const char kStubCros[] = "stub-cros"; | 1201 const char kStubCros[] = "stub-cros"; |
1202 | 1202 |
| 1203 // Indicates that a stub implementation of CrosSettings that stores settings in |
| 1204 // memory without signing should be used, treating current user as the owner. |
| 1205 // This option is for testing the chromeos build of chrome on the desktop only. |
| 1206 const char kStubCrosSettings[] = "stub-cros-settings"; |
| 1207 |
1203 // URL of the html page for Screen Saver. | 1208 // URL of the html page for Screen Saver. |
1204 const char kScreenSaverUrl[] = "screen-saver-url"; | 1209 const char kScreenSaverUrl[] = "screen-saver-url"; |
1205 | 1210 |
1206 // Triggers ChromeOS system log compression during feedback submit. | 1211 // Triggers ChromeOS system log compression during feedback submit. |
1207 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1212 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
1208 | 1213 |
1209 // Enables overriding the path for the default authentication extension. | 1214 // Enables overriding the path for the default authentication extension. |
1210 const char kAuthExtensionPath[] = "auth-ext-path"; | 1215 const char kAuthExtensionPath[] = "auth-ext-path"; |
1211 | 1216 |
1212 // Power of the power-of-2 initial modulus that will be used by the | 1217 // Power of the power-of-2 initial modulus that will be used by the |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1319 | 1324 |
1320 // ----------------------------------------------------------------------------- | 1325 // ----------------------------------------------------------------------------- |
1321 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1326 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1322 // | 1327 // |
1323 // You were going to just dump your switches here, weren't you? Instead, please | 1328 // You were going to just dump your switches here, weren't you? Instead, please |
1324 // put them in alphabetical order above, or in order inside the appropriate | 1329 // put them in alphabetical order above, or in order inside the appropriate |
1325 // ifdef at the bottom. The order should match the header. | 1330 // ifdef at the bottom. The order should match the header. |
1326 // ----------------------------------------------------------------------------- | 1331 // ----------------------------------------------------------------------------- |
1327 | 1332 |
1328 } // namespace switches | 1333 } // namespace switches |
OLD | NEW |