| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 928 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 939 // A flag, generated internally by Chrome for renderer and other helper process | 939 // A flag, generated internally by Chrome for renderer and other helper process |
| 940 // command lines on Linux and Mac. It tells the helper process to enable crash | 940 // command lines on Linux and Mac. It tells the helper process to enable crash |
| 941 // dumping and reporting, because helpers cannot access the profile or other | 941 // dumping and reporting, because helpers cannot access the profile or other |
| 942 // files needed to make this decision. | 942 // files needed to make this decision. |
| 943 // If passed to the browser, it'll be passed on to all the helper processes | 943 // If passed to the browser, it'll be passed on to all the helper processes |
| 944 // as well, thereby force-enabling the crash reporter. | 944 // as well, thereby force-enabling the crash reporter. |
| 945 const char kEnableCrashReporter[] = "enable-crash-reporter"; | 945 const char kEnableCrashReporter[] = "enable-crash-reporter"; |
| 946 | 946 |
| 947 // This switch is used during automated testing. | 947 // This switch is used during automated testing. |
| 948 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; | 948 const char kNoProcessSingletonDialog[] = "no-process-singleton-dialog"; |
| 949 |
| 950 #if !defined(OS_MACOSX) |
| 951 // Specifies which password store to use (detect, default, gnome, kwallet). |
| 952 const char kPasswordStore[] = "password-store"; |
| 953 #endif |
| 949 #endif | 954 #endif |
| 950 | 955 |
| 951 #if defined(OS_MACOSX) | 956 #if defined(OS_MACOSX) |
| 952 // Cause the OS X sandbox write to syslog every time an access to a resource | 957 // Cause the OS X sandbox write to syslog every time an access to a resource |
| 953 // is denied by the sandbox. | 958 // is denied by the sandbox. |
| 954 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; | 959 const char kEnableSandboxLogging[] = "enable-sandbox-logging"; |
| 955 | 960 |
| 956 // Temporary flag to prevent Flash from negotiating the Core Animation drawing | 961 // Temporary flag to prevent Flash from negotiating the Core Animation drawing |
| 957 // model. This will be removed once the last issues have been resolved. | 962 // model. This will be removed once the last issues have been resolved. |
| 958 const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation"; | 963 const char kDisableFlashCoreAnimation[] = "disable-flash-core-animation"; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 | 1007 |
| 1003 // ----------------------------------------------------------------------------- | 1008 // ----------------------------------------------------------------------------- |
| 1004 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1009 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1005 // | 1010 // |
| 1006 // You were going to just dump your switches here, weren't you? Instead, | 1011 // You were going to just dump your switches here, weren't you? Instead, |
| 1007 // please put them in alphabetical order above, or in order inside the | 1012 // please put them in alphabetical order above, or in order inside the |
| 1008 // appropriate ifdef at the bottom. The order should match the header. | 1013 // appropriate ifdef at the bottom. The order should match the header. |
| 1009 // ----------------------------------------------------------------------------- | 1014 // ----------------------------------------------------------------------------- |
| 1010 | 1015 |
| 1011 } // namespace switches | 1016 } // namespace switches |
| OLD | NEW |