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 1530 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1541 #endif // NDEBUG | 1541 #endif // NDEBUG |
1542 #endif // OS_CHROMEOS | 1542 #endif // OS_CHROMEOS |
1543 | 1543 |
1544 #if defined(OS_POSIX) | 1544 #if defined(OS_POSIX) |
1545 // A flag, generated internally by Chrome for renderer and other helper process | 1545 // A flag, generated internally by Chrome for renderer and other helper process |
1546 // command lines on Linux and Mac. It tells the helper process to enable crash | 1546 // command lines on Linux and Mac. It tells the helper process to enable crash |
1547 // dumping and reporting, because helpers cannot access the profile or other | 1547 // dumping and reporting, because helpers cannot access the profile or other |
1548 // files needed to make this decision. | 1548 // files needed to make this decision. |
1549 const char kEnableCrashReporter[] = "enable-crash-reporter"; | 1549 const char kEnableCrashReporter[] = "enable-crash-reporter"; |
1550 | 1550 |
| 1551 // Used for turning on Breakpad crash reporting in a debug environment where |
| 1552 // crash reporting is typically compiled but disabled. |
| 1553 const char kEnableCrashReporterForTesting[] = |
| 1554 "enable-crash-reporter-for-testing"; |
| 1555 |
1551 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1556 #if !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
1552 // Specifies which password store to use (detect, default, gnome, kwallet). | 1557 // Specifies which password store to use (detect, default, gnome, kwallet). |
1553 const char kPasswordStore[] = "password-store"; | 1558 const char kPasswordStore[] = "password-store"; |
1554 #endif | 1559 #endif |
1555 #endif // OS_POSIX | 1560 #endif // OS_POSIX |
1556 | 1561 |
1557 #if defined(OS_MACOSX) | 1562 #if defined(OS_MACOSX) |
1558 // Enables the tabs expose feature ( http://crbug.com/50307 ). | 1563 // Enables the tabs expose feature ( http://crbug.com/50307 ). |
1559 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; | 1564 const char kEnableExposeForTabs[] = "enable-expose-for-tabs"; |
1560 | 1565 |
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1621 | 1626 |
1622 // ----------------------------------------------------------------------------- | 1627 // ----------------------------------------------------------------------------- |
1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1628 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1624 // | 1629 // |
1625 // You were going to just dump your switches here, weren't you? Instead, please | 1630 // You were going to just dump your switches here, weren't you? Instead, please |
1626 // put them in alphabetical order above, or in order inside the appropriate | 1631 // put them in alphabetical order above, or in order inside the appropriate |
1627 // ifdef at the bottom. The order should match the header. | 1632 // ifdef at the bottom. The order should match the header. |
1628 // ----------------------------------------------------------------------------- | 1633 // ----------------------------------------------------------------------------- |
1629 | 1634 |
1630 } // namespace switches | 1635 } // namespace switches |
OLD | NEW |