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 1479 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1490 const char kEnableCrashReporterForTesting[] = | 1490 const char kEnableCrashReporterForTesting[] = |
1491 "enable-crash-reporter-for-testing"; | 1491 "enable-crash-reporter-for-testing"; |
1492 | 1492 |
1493 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1493 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
1494 // Specifies which password store to use (detect, default, gnome, kwallet). | 1494 // Specifies which password store to use (detect, default, gnome, kwallet). |
1495 const char kPasswordStore[] = "password-store"; | 1495 const char kPasswordStore[] = "password-store"; |
1496 #endif | 1496 #endif |
1497 #endif // OS_POSIX | 1497 #endif // OS_POSIX |
1498 | 1498 |
1499 #if defined(OS_MACOSX) | 1499 #if defined(OS_MACOSX) |
| 1500 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
| 1501 // older, SnowLeopard-style fullscreen. |
| 1502 const char kDisableSystemFullscreenForTesting[] = |
| 1503 "disable-system-fullscreen-for-testing"; |
| 1504 |
1500 // Enables the app list OSX .app shim, for showing the app list. If the flag is | 1505 // Enables the app list OSX .app shim, for showing the app list. If the flag is |
1501 // not present, Chrome will check if the shim exists at startup, and delete it | 1506 // not present, Chrome will check if the shim exists at startup, and delete it |
1502 // if it does. | 1507 // if it does. |
1503 const char kEnableAppListShim[] = "enable-app-list-shim"; | 1508 const char kEnableAppListShim[] = "enable-app-list-shim"; |
1504 | 1509 |
1505 // Enable to allow creation and launch of app shims for platform apps. | 1510 // Enable to allow creation and launch of app shims for platform apps. |
1506 const char kEnableAppShims[] = "enable-app-shims"; | 1511 const char kEnableAppShims[] = "enable-app-shims"; |
1507 | 1512 |
1508 // Enables the tabs expose feature ( http://crbug.com/50307 ). | 1513 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
1509 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; | 1514 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1589 | 1594 |
1590 // ----------------------------------------------------------------------------- | 1595 // ----------------------------------------------------------------------------- |
1591 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1596 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1592 // | 1597 // |
1593 // You were going to just dump your switches here, weren't you? Instead, please | 1598 // You were going to just dump your switches here, weren't you? Instead, please |
1594 // put them in alphabetical order above, or in order inside the appropriate | 1599 // put them in alphabetical order above, or in order inside the appropriate |
1595 // ifdef at the bottom. The order should match the header. | 1600 // ifdef at the bottom. The order should match the header. |
1596 // ----------------------------------------------------------------------------- | 1601 // ----------------------------------------------------------------------------- |
1597 | 1602 |
1598 } // namespace switches | 1603 } // namespace switches |
OLD | NEW |