OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 1352 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1363 // mode. Should completely disable extensions, sync and bookmarks. | 1363 // mode. Should completely disable extensions, sync and bookmarks. |
1364 const char kGuestSession[] = "bwsi"; | 1364 const char kGuestSession[] = "bwsi"; |
1365 | 1365 |
1366 // Enables overriding the path for the default echo component extension. | 1366 // Enables overriding the path for the default echo component extension. |
1367 // Useful for testing. | 1367 // Useful for testing. |
1368 const char kEchoExtensionPath[] = "echo-ext-path"; | 1368 const char kEchoExtensionPath[] = "echo-ext-path"; |
1369 | 1369 |
1370 // Show volume controls in status bar on ChromeOS. | 1370 // Show volume controls in status bar on ChromeOS. |
1371 const char kShowVolumeStatus[] = "show-volume-status"; | 1371 const char kShowVolumeStatus[] = "show-volume-status"; |
1372 | 1372 |
1373 // Indicates that stub implementations of the libcros library should be used. | |
1374 // This is typically used to test the chromeos build of chrome on the desktop. | |
1375 const char kStubCros[] = "stub-cros"; | |
1376 | |
1377 // Indicates that a stub implementation of CrosSettings that stores settings in | 1373 // Indicates that a stub implementation of CrosSettings that stores settings in |
1378 // memory without signing should be used, treating current user as the owner. | 1374 // memory without signing should be used, treating current user as the owner. |
1379 // This option is for testing the chromeos build of chrome on the desktop only. | 1375 // This option is for testing the chromeos build of chrome on the desktop only. |
1380 const char kStubCrosSettings[] = "stub-cros-settings"; | 1376 const char kStubCrosSettings[] = "stub-cros-settings"; |
1381 | 1377 |
1382 // Triggers ChromeOS system log compression during feedback submit. | 1378 // Triggers ChromeOS system log compression during feedback submit. |
1383 const char kCompressSystemFeedback[] = "compress-sys-feedback"; | 1379 const char kCompressSystemFeedback[] = "compress-sys-feedback"; |
1384 | 1380 |
1385 // Enables overriding the path for the default authentication extension. | 1381 // Enables overriding the path for the default authentication extension. |
1386 const char kAuthExtensionPath[] = "auth-ext-path"; | 1382 const char kAuthExtensionPath[] = "auth-ext-path"; |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1475 | 1471 |
1476 // ----------------------------------------------------------------------------- | 1472 // ----------------------------------------------------------------------------- |
1477 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1473 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1478 // | 1474 // |
1479 // You were going to just dump your switches here, weren't you? Instead, please | 1475 // You were going to just dump your switches here, weren't you? Instead, please |
1480 // put them in alphabetical order above, or in order inside the appropriate | 1476 // put them in alphabetical order above, or in order inside the appropriate |
1481 // ifdef at the bottom. The order should match the header. | 1477 // ifdef at the bottom. The order should match the header. |
1482 // ----------------------------------------------------------------------------- | 1478 // ----------------------------------------------------------------------------- |
1483 | 1479 |
1484 } // namespace switches | 1480 } // namespace switches |
OLD | NEW |