| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 extern const wchar_t kRecordMode[]; | 70 extern const wchar_t kRecordMode[]; |
| 71 extern const wchar_t kPlaybackMode[]; | 71 extern const wchar_t kPlaybackMode[]; |
| 72 extern const wchar_t kNoEvents[]; | 72 extern const wchar_t kNoEvents[]; |
| 73 extern const wchar_t kNoJsRandomness[]; | 73 extern const wchar_t kNoJsRandomness[]; |
| 74 | 74 |
| 75 extern const wchar_t kHideIcons[]; | 75 extern const wchar_t kHideIcons[]; |
| 76 extern const wchar_t kShowIcons[]; | 76 extern const wchar_t kShowIcons[]; |
| 77 extern const wchar_t kMakeDefaultBrowser[]; | 77 extern const wchar_t kMakeDefaultBrowser[]; |
| 78 | 78 |
| 79 extern const wchar_t kProxyServer[]; | 79 extern const wchar_t kProxyServer[]; |
| 80 extern const wchar_t kNoProxyServer[]; |
| 81 extern const wchar_t kProxyServerBypassUrls[]; |
| 82 extern const wchar_t kProxyServerAutoDetect[]; |
| 83 extern const wchar_t kProxyServerPacUrl[]; |
| 80 extern const wchar_t kWinHttpProxyResolver[]; | 84 extern const wchar_t kWinHttpProxyResolver[]; |
| 81 extern const wchar_t kDebugPrint[]; | 85 extern const wchar_t kDebugPrint[]; |
| 82 | 86 |
| 83 extern const wchar_t kDnsLogDetails[]; | 87 extern const wchar_t kDnsLogDetails[]; |
| 84 extern const wchar_t kDnsPrefetchDisable[]; | 88 extern const wchar_t kDnsPrefetchDisable[]; |
| 85 | 89 |
| 86 extern const wchar_t kAllowAllActiveX[]; | 90 extern const wchar_t kAllowAllActiveX[]; |
| 87 | 91 |
| 88 extern const wchar_t kDisableDevTools[]; | 92 extern const wchar_t kDisableDevTools[]; |
| 89 extern const wchar_t kAlwaysEnableDevTools[]; | 93 extern const wchar_t kAlwaysEnableDevTools[]; |
| (...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 161 extern const wchar_t kEnableStatsTable[]; | 165 extern const wchar_t kEnableStatsTable[]; |
| 162 | 166 |
| 163 extern const wchar_t kEnableOmnibox2[]; | 167 extern const wchar_t kEnableOmnibox2[]; |
| 164 | 168 |
| 165 extern const wchar_t kDisableAudio[]; | 169 extern const wchar_t kDisableAudio[]; |
| 166 extern const wchar_t kSimpleDataSource[]; | 170 extern const wchar_t kSimpleDataSource[]; |
| 167 | 171 |
| 168 } // namespace switches | 172 } // namespace switches |
| 169 | 173 |
| 170 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ | 174 #endif // CHROME_COMMON_CHROME_SWITCHES_H__ |
| OLD | NEW |