| OLD | NEW |
| 1 // Copyright (c) 2006-2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2009 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 // Defines all the command-line switches used by Chrome. | 5 // Defines all the command-line switches used by Chrome. |
| 6 | 6 |
| 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ | 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ |
| 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ | 8 #define CHROME_COMMON_CHROME_SWITCHES_H_ |
| 9 | 9 |
| 10 #include "base/base_switches.h" | 10 #include "base/base_switches.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 extern const wchar_t kProcessPerSite[]; | 36 extern const wchar_t kProcessPerSite[]; |
| 37 extern const wchar_t kInProcessPlugins[]; | 37 extern const wchar_t kInProcessPlugins[]; |
| 38 extern const wchar_t kNoSandbox[]; | 38 extern const wchar_t kNoSandbox[]; |
| 39 extern const wchar_t kDisableAltWinstation[]; | 39 extern const wchar_t kDisableAltWinstation[]; |
| 40 extern const wchar_t kSafePlugins[]; | 40 extern const wchar_t kSafePlugins[]; |
| 41 extern const wchar_t kTrustedPlugins[]; | 41 extern const wchar_t kTrustedPlugins[]; |
| 42 extern const wchar_t kTestSandbox[]; | 42 extern const wchar_t kTestSandbox[]; |
| 43 extern const wchar_t kUserDataDir[]; | 43 extern const wchar_t kUserDataDir[]; |
| 44 extern const wchar_t kPluginDataDir[]; | 44 extern const wchar_t kPluginDataDir[]; |
| 45 extern const wchar_t kDiskCacheDir[]; | 45 extern const wchar_t kDiskCacheDir[]; |
| 46 extern const wchar_t kDiskCacheSize[]; |
| 47 extern const wchar_t kMediaCacheSize[]; |
| 46 extern const wchar_t kEnableUserDataDirProfiles[]; | 48 extern const wchar_t kEnableUserDataDirProfiles[]; |
| 47 extern const wchar_t kParentProfile[]; | 49 extern const wchar_t kParentProfile[]; |
| 48 extern const wchar_t kApp[]; | 50 extern const wchar_t kApp[]; |
| 49 extern const wchar_t kDomAutomationController[]; | 51 extern const wchar_t kDomAutomationController[]; |
| 50 extern const wchar_t kPluginPath[]; | 52 extern const wchar_t kPluginPath[]; |
| 51 extern const wchar_t kUserAgent[]; | 53 extern const wchar_t kUserAgent[]; |
| 52 extern const wchar_t kJavaScriptFlags[]; | 54 extern const wchar_t kJavaScriptFlags[]; |
| 53 extern const wchar_t kCountry[]; | 55 extern const wchar_t kCountry[]; |
| 54 extern const wchar_t kDebugChildren[]; | 56 extern const wchar_t kDebugChildren[]; |
| 55 extern const wchar_t kWaitForDebuggerChildren[]; | 57 extern const wchar_t kWaitForDebuggerChildren[]; |
| (...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 200 | 202 |
| 201 extern const wchar_t kFileDescriptorLimit[]; | 203 extern const wchar_t kFileDescriptorLimit[]; |
| 202 | 204 |
| 203 extern const wchar_t kEnableMonitorProfile[]; | 205 extern const wchar_t kEnableMonitorProfile[]; |
| 204 | 206 |
| 205 extern const wchar_t kEnableXSSAuditor[]; | 207 extern const wchar_t kEnableXSSAuditor[]; |
| 206 | 208 |
| 207 } // namespace switches | 209 } // namespace switches |
| 208 | 210 |
| 209 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 211 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |