| 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 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1451 // Enables the new NTP. | 1451 // Enables the new NTP. |
| 1452 const char kEnableNewNTP[] = "enable-new-ntp"; | 1452 const char kEnableNewNTP[] = "enable-new-ntp"; |
| 1453 #endif | 1453 #endif |
| 1454 | 1454 |
| 1455 #if defined(USE_ASH) | 1455 #if defined(USE_ASH) |
| 1456 const char kAshDisableTabScrubbing[] = "ash-disable-tab-scrubbing"; | 1456 const char kAshDisableTabScrubbing[] = "ash-disable-tab-scrubbing"; |
| 1457 const char kOpenAsh[] = "open-ash"; | 1457 const char kOpenAsh[] = "open-ash"; |
| 1458 #endif | 1458 #endif |
| 1459 | 1459 |
| 1460 #if defined(OS_POSIX) | 1460 #if defined(OS_POSIX) |
| 1461 // A flag, generated internally by Chrome for renderer and other helper process | |
| 1462 // command lines on Linux and Mac. It tells the helper process to enable crash | |
| 1463 // dumping and reporting, because helpers cannot access the profile or other | |
| 1464 // files needed to make this decision. | |
| 1465 const char kEnableCrashReporter[] = "enable-crash-reporter"; | |
| 1466 | |
| 1467 // Used for turning on Breakpad crash reporting in a debug environment where | 1461 // Used for turning on Breakpad crash reporting in a debug environment where |
| 1468 // crash reporting is typically compiled but disabled. | 1462 // crash reporting is typically compiled but disabled. |
| 1469 const char kEnableCrashReporterForTesting[] = | 1463 const char kEnableCrashReporterForTesting[] = |
| 1470 "enable-crash-reporter-for-testing"; | 1464 "enable-crash-reporter-for-testing"; |
| 1471 | 1465 |
| 1472 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1466 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1473 // Specifies which password store to use (detect, default, gnome, kwallet). | 1467 // Specifies which password store to use (detect, default, gnome, kwallet). |
| 1474 const char kPasswordStore[] = "password-store"; | 1468 const char kPasswordStore[] = "password-store"; |
| 1475 #endif | 1469 #endif |
| 1476 #endif // OS_POSIX | 1470 #endif // OS_POSIX |
| (...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1573 | 1567 |
| 1574 // ----------------------------------------------------------------------------- | 1568 // ----------------------------------------------------------------------------- |
| 1575 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1569 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1576 // | 1570 // |
| 1577 // You were going to just dump your switches here, weren't you? Instead, please | 1571 // You were going to just dump your switches here, weren't you? Instead, please |
| 1578 // put them in alphabetical order above, or in order inside the appropriate | 1572 // put them in alphabetical order above, or in order inside the appropriate |
| 1579 // ifdef at the bottom. The order should match the header. | 1573 // ifdef at the bottom. The order should match the header. |
| 1580 // ----------------------------------------------------------------------------- | 1574 // ----------------------------------------------------------------------------- |
| 1581 | 1575 |
| 1582 } // namespace switches | 1576 } // namespace switches |
| OLD | NEW |