| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 | 71 |
| 72 extern const wchar_t kRecordMode[]; | 72 extern const wchar_t kRecordMode[]; |
| 73 extern const wchar_t kPlaybackMode[]; | 73 extern const wchar_t kPlaybackMode[]; |
| 74 extern const wchar_t kNoEvents[]; | 74 extern const wchar_t kNoEvents[]; |
| 75 | 75 |
| 76 extern const wchar_t kHideIcons[]; | 76 extern const wchar_t kHideIcons[]; |
| 77 extern const wchar_t kShowIcons[]; | 77 extern const wchar_t kShowIcons[]; |
| 78 extern const wchar_t kMakeDefaultBrowser[]; | 78 extern const wchar_t kMakeDefaultBrowser[]; |
| 79 | 79 |
| 80 extern const wchar_t kProxyServer[]; | 80 extern const wchar_t kProxyServer[]; |
| 81 extern const wchar_t kV8ProxyResolver[]; |
| 81 extern const wchar_t kDebugPrint[]; | 82 extern const wchar_t kDebugPrint[]; |
| 82 | 83 |
| 83 extern const wchar_t kDnsLogDetails[]; | 84 extern const wchar_t kDnsLogDetails[]; |
| 84 extern const wchar_t kDnsPrefetchDisable[]; | 85 extern const wchar_t kDnsPrefetchDisable[]; |
| 85 | 86 |
| 86 extern const wchar_t kAllowAllActiveX[]; | 87 extern const wchar_t kAllowAllActiveX[]; |
| 87 | 88 |
| 88 extern const wchar_t kDisableDevTools[]; | 89 extern const wchar_t kDisableDevTools[]; |
| 89 extern const wchar_t kAlwaysEnableDevTools[]; | 90 extern const wchar_t kAlwaysEnableDevTools[]; |
| 90 | 91 |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 extern const wchar_t kTestName[]; | 149 extern const wchar_t kTestName[]; |
| 149 | 150 |
| 150 extern const wchar_t kRendererCmdPrefix[]; | 151 extern const wchar_t kRendererCmdPrefix[]; |
| 151 | 152 |
| 152 extern const wchar_t kIPCUseFIFO[]; | 153 extern const wchar_t kIPCUseFIFO[]; |
| 153 | 154 |
| 154 } // namespace switches | 155 } // namespace switches |
| 155 | 156 |
| 156 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ | 157 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ |
| 157 | 158 |
| OLD | NEW |