| 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" |
| 11 | 11 |
| 12 namespace switches { | 12 namespace switches { |
| 13 | 13 |
| 14 extern const wchar_t kDisableHangMonitor[]; | 14 extern const wchar_t kDisableHangMonitor[]; |
| 15 extern const wchar_t kDisableMetrics[]; | 15 extern const wchar_t kDisableMetrics[]; |
| 16 extern const wchar_t kMetricsRecordingOnly[]; | 16 extern const wchar_t kMetricsRecordingOnly[]; |
| 17 extern const wchar_t kBrowserAssertTest[]; | 17 extern const wchar_t kBrowserAssertTest[]; |
| 18 extern const wchar_t kRendererAssertTest[]; | 18 extern const wchar_t kRendererAssertTest[]; |
| 19 extern const wchar_t kBrowserCrashTest[]; | 19 extern const wchar_t kBrowserCrashTest[]; |
| 20 extern const wchar_t kRendererCrashTest[]; | 20 extern const wchar_t kRendererCrashTest[]; |
| 21 extern const wchar_t kRendererStartupDialog[]; | 21 extern const wchar_t kRendererStartupDialog[]; |
| 22 extern const wchar_t kPluginStartupDialog[]; | 22 extern const wchar_t kPluginStartupDialog[]; |
| 23 extern const wchar_t kPluginLauncher[]; | 23 extern const wchar_t kPluginLauncher[]; |
| 24 | 24 |
| 25 extern const wchar_t kProcessChannelID[]; | 25 extern const wchar_t kProcessChannelID[]; |
| 26 extern const wchar_t kTestingChannelID[]; | 26 extern const wchar_t kTestingChannelID[]; |
| 27 extern const wchar_t kHomePage[]; | 27 extern const wchar_t kHomePage[]; |
| 28 extern const wchar_t kRendererProcess[]; | 28 extern const wchar_t kRendererProcess[]; |
| 29 extern const wchar_t kBrowserSubprocessPath[]; | 29 extern const wchar_t kBrowserSubprocessPath[]; |
| 30 extern const wchar_t kPluginProcess[]; | 30 extern const wchar_t kPluginProcess[]; |
| 31 extern const wchar_t kWorkerProcess[]; | 31 extern const wchar_t kWorkerProcess[]; |
| 32 extern const wchar_t kUtilityProcess[]; | 32 extern const wchar_t kUtilityProcess[]; |
| 33 extern const wchar_t kSingleProcess[]; | 33 extern const wchar_t kSingleProcess[]; |
| 34 extern const wchar_t kProcessPerTab[]; | 34 extern const wchar_t kProcessPerTab[]; |
| 35 extern const wchar_t kProcessPerSite[]; | 35 extern const wchar_t kProcessPerSite[]; |
| 36 extern const wchar_t kInProcessPlugins[]; | 36 extern const wchar_t kInProcessPlugins[]; |
| 37 extern const wchar_t kNoSandbox[]; | 37 extern const wchar_t kNoSandbox[]; |
| 38 extern const wchar_t kDisableAltWinstation[]; |
| 38 extern const wchar_t kSafePlugins[]; | 39 extern const wchar_t kSafePlugins[]; |
| 39 extern const wchar_t kTrustedPlugins[]; | 40 extern const wchar_t kTrustedPlugins[]; |
| 40 extern const wchar_t kTestSandbox[]; | 41 extern const wchar_t kTestSandbox[]; |
| 41 extern const wchar_t kUserDataDir[]; | 42 extern const wchar_t kUserDataDir[]; |
| 42 extern const wchar_t kPluginDataDir[]; | 43 extern const wchar_t kPluginDataDir[]; |
| 43 extern const wchar_t kDiskCacheDir[]; | 44 extern const wchar_t kDiskCacheDir[]; |
| 44 extern const wchar_t kEnableUserDataDirProfiles[]; | 45 extern const wchar_t kEnableUserDataDirProfiles[]; |
| 45 extern const wchar_t kParentProfile[]; | 46 extern const wchar_t kParentProfile[]; |
| 46 extern const wchar_t kApp[]; | 47 extern const wchar_t kApp[]; |
| 47 extern const wchar_t kDomAutomationController[]; | 48 extern const wchar_t kDomAutomationController[]; |
| (...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 | 169 |
| 169 extern const wchar_t kAutoSpellCorrect[]; | 170 extern const wchar_t kAutoSpellCorrect[]; |
| 170 | 171 |
| 171 extern const wchar_t kEnableOmnibox2[]; | 172 extern const wchar_t kEnableOmnibox2[]; |
| 172 | 173 |
| 173 extern const wchar_t kDisableAudio[]; | 174 extern const wchar_t kDisableAudio[]; |
| 174 extern const wchar_t kSimpleDataSource[]; | 175 extern const wchar_t kSimpleDataSource[]; |
| 175 | 176 |
| 176 } // namespace switches | 177 } // namespace switches |
| 177 | 178 |
| 178 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ | 179 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
| OLD | NEW |