OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 9 #pragma once |
10 | 10 |
(...skipping 156 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
167 extern const char kForceCompositingMode[]; | 167 extern const char kForceCompositingMode[]; |
168 extern const char kForceRendererAccessibility[]; | 168 extern const char kForceRendererAccessibility[]; |
169 extern const char kForceStubLibcros[]; | 169 extern const char kForceStubLibcros[]; |
170 extern const char kGSSAPILibraryName[]; | 170 extern const char kGSSAPILibraryName[]; |
171 extern const char kHelp[]; | 171 extern const char kHelp[]; |
172 extern const char kHelpShort[]; | 172 extern const char kHelpShort[]; |
173 extern const char kHideIcons[]; | 173 extern const char kHideIcons[]; |
174 extern const char kHomePage[]; | 174 extern const char kHomePage[]; |
175 extern const char kHostRules[]; | 175 extern const char kHostRules[]; |
176 extern const char kHostResolverParallelism[]; | 176 extern const char kHostResolverParallelism[]; |
| 177 extern const char kHostResolverRetryAttempts[]; |
177 extern const char kHostResolverRules[]; | 178 extern const char kHostResolverRules[]; |
178 extern const char kHstsHosts[]; | 179 extern const char kHstsHosts[]; |
179 extern const char kIgnoreGpuBlacklist[]; | 180 extern const char kIgnoreGpuBlacklist[]; |
180 extern const char kImport[]; | 181 extern const char kImport[]; |
181 extern const char kImportFromFile[]; | 182 extern const char kImportFromFile[]; |
182 extern const char kIncognito[]; | 183 extern const char kIncognito[]; |
183 extern const char kInstantURL[]; | 184 extern const char kInstantURL[]; |
184 extern const char kKeepAliveForTest[]; | 185 extern const char kKeepAliveForTest[]; |
185 extern const char kLoadExtension[]; | 186 extern const char kLoadExtension[]; |
186 extern const char kLoadOpencryptoki[]; | 187 extern const char kLoadOpencryptoki[]; |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 #endif | 355 #endif |
355 | 356 |
356 bool IsPrintPreviewEnabled(); | 357 bool IsPrintPreviewEnabled(); |
357 | 358 |
358 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 359 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
359 // alphabetical order, or in one of the ifdefs (also in order in each section). | 360 // alphabetical order, or in one of the ifdefs (also in order in each section). |
360 | 361 |
361 } // namespace switches | 362 } // namespace switches |
362 | 363 |
363 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 364 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |