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