| 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 1464 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1475 const char kEnableCrashReporterForTesting[] = | 1475 const char kEnableCrashReporterForTesting[] = |
| 1476 "enable-crash-reporter-for-testing"; | 1476 "enable-crash-reporter-for-testing"; |
| 1477 | 1477 |
| 1478 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1478 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1479 // Specifies which password store to use (detect, default, gnome, kwallet). | 1479 // Specifies which password store to use (detect, default, gnome, kwallet). |
| 1480 const char kPasswordStore[] = "password-store"; | 1480 const char kPasswordStore[] = "password-store"; |
| 1481 #endif | 1481 #endif |
| 1482 #endif // OS_POSIX | 1482 #endif // OS_POSIX |
| 1483 | 1483 |
| 1484 #if defined(OS_MACOSX) | 1484 #if defined(OS_MACOSX) |
| 1485 // Forcibly disables Lion-style on newer OSes, to allow developers to test the |
| 1486 // older, SnowLeopard-style fullscreen. |
| 1487 const char kDisableSystemFullscreenForTesting[] = |
| 1488 "disable-system-fullscreen-for-testing"; |
| 1489 |
| 1485 // Enables the app list OSX .app shim, for showing the app list. If the flag is | 1490 // Enables the app list OSX .app shim, for showing the app list. If the flag is |
| 1486 // not present, Chrome will check if the shim exists at startup, and delete it | 1491 // not present, Chrome will check if the shim exists at startup, and delete it |
| 1487 // if it does. | 1492 // if it does. |
| 1488 const char kEnableAppListShim[] = "enable-app-list-shim"; | 1493 const char kEnableAppListShim[] = "enable-app-list-shim"; |
| 1489 | 1494 |
| 1490 // Enable to allow creation and launch of app shims for platform apps. | 1495 // Enable to allow creation and launch of app shims for platform apps. |
| 1491 const char kEnableAppShims[] = "enable-app-shims"; | 1496 const char kEnableAppShims[] = "enable-app-shims"; |
| 1492 | 1497 |
| 1493 // Enables the tabs expose feature ( http://crbug.com/50307 ). | 1498 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
| 1494 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; | 1499 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
| (...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1574 | 1579 |
| 1575 // ----------------------------------------------------------------------------- | 1580 // ----------------------------------------------------------------------------- |
| 1576 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1581 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1577 // | 1582 // |
| 1578 // You were going to just dump your switches here, weren't you? Instead, please | 1583 // You were going to just dump your switches here, weren't you? Instead, please |
| 1579 // put them in alphabetical order above, or in order inside the appropriate | 1584 // put them in alphabetical order above, or in order inside the appropriate |
| 1580 // ifdef at the bottom. The order should match the header. | 1585 // ifdef at the bottom. The order should match the header. |
| 1581 // ----------------------------------------------------------------------------- | 1586 // ----------------------------------------------------------------------------- |
| 1582 | 1587 |
| 1583 } // namespace switches | 1588 } // namespace switches |
| OLD | NEW |