Chromium Code Reviews| 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 1426 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1437 // Specifies which password store to use (detect, default, gnome, kwallet). | 1437 // Specifies which password store to use (detect, default, gnome, kwallet). |
| 1438 const char kPasswordStore[] = "password-store"; | 1438 const char kPasswordStore[] = "password-store"; |
| 1439 #endif | 1439 #endif |
| 1440 | 1440 |
| 1441 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) | 1441 #if defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 1442 // Triggers migration of user data directory to another directory | 1442 // Triggers migration of user data directory to another directory |
| 1443 // specified as a parameter. The migration is done under singleton lock, | 1443 // specified as a parameter. The migration is done under singleton lock, |
| 1444 // and sanity checks are made to avoid corrupting the profile. | 1444 // and sanity checks are made to avoid corrupting the profile. |
| 1445 // The browser exits after migration is complete. | 1445 // The browser exits after migration is complete. |
| 1446 const char kMigrateDataDirForSxS[] = "migrate-data-dir-for-sxs"; | 1446 const char kMigrateDataDirForSxS[] = "migrate-data-dir-for-sxs"; |
| 1447 const char kEnableSpeechDispatcher[] = "enable-speech-dispatcher"; | |
|
msw
2014/03/24 17:11:00
nit: add a comment briefly explaining what enablin
dmazzoni
2014/03/24 22:08:42
Done.
| |
| 1447 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) | 1448 #endif // defined(OS_LINUX) && !defined(OS_CHROMEOS) |
| 1448 | 1449 |
| 1449 #if defined(OS_MACOSX) | 1450 #if defined(OS_MACOSX) |
| 1450 // Disables the creation and launch of app shims for platform apps. | 1451 // Disables the creation and launch of app shims for platform apps. |
| 1451 const char kDisableAppShims[] = "disable-app-shims"; | 1452 const char kDisableAppShims[] = "disable-app-shims"; |
| 1452 | 1453 |
| 1453 // Forcibly disables Lion-style on newer OSes, to allow developers to test the | 1454 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
| 1454 // older, SnowLeopard-style fullscreen. | 1455 // older, SnowLeopard-style fullscreen. |
| 1455 const char kDisableSystemFullscreenForTesting[] = | 1456 const char kDisableSystemFullscreenForTesting[] = |
| 1456 "disable-system-fullscreen-for-testing"; | 1457 "disable-system-fullscreen-for-testing"; |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1529 | 1530 |
| 1530 // ----------------------------------------------------------------------------- | 1531 // ----------------------------------------------------------------------------- |
| 1531 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1532 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1532 // | 1533 // |
| 1533 // You were going to just dump your switches here, weren't you? Instead, please | 1534 // You were going to just dump your switches here, weren't you? Instead, please |
| 1534 // put them in alphabetical order above, or in order inside the appropriate | 1535 // put them in alphabetical order above, or in order inside the appropriate |
| 1535 // ifdef at the bottom. The order should match the header. | 1536 // ifdef at the bottom. The order should match the header. |
| 1536 // ----------------------------------------------------------------------------- | 1537 // ----------------------------------------------------------------------------- |
| 1537 | 1538 |
| 1538 } // namespace switches | 1539 } // namespace switches |
| OLD | NEW |