OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "build/build_config.h" | 10 #include "build/build_config.h" |
(...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 extern const char kMaxSpdySessionsPerDomain[]; | 354 extern const char kMaxSpdySessionsPerDomain[]; |
355 extern const char kMaxSpdyConcurrentStreams[]; | 355 extern const char kMaxSpdyConcurrentStreams[]; |
356 extern const char kUserDataDir[]; | 356 extern const char kUserDataDir[]; |
357 extern const char kVariationsServerURL[]; | 357 extern const char kVariationsServerURL[]; |
358 extern const char kVersion[]; | 358 extern const char kVersion[]; |
359 extern const char kVisitURLs[]; | 359 extern const char kVisitURLs[]; |
360 extern const char kWhitelistedExtensionID[]; | 360 extern const char kWhitelistedExtensionID[]; |
361 extern const char kWindowPosition[]; | 361 extern const char kWindowPosition[]; |
362 extern const char kWindowSize[]; | 362 extern const char kWindowSize[]; |
363 extern const char kWinHttpProxyResolver[]; | 363 extern const char kWinHttpProxyResolver[]; |
| 364 extern const char kZerosuggestURLPrefix[]; |
364 | 365 |
365 #if defined(OS_ANDROID) | 366 #if defined(OS_ANDROID) |
366 extern const char kTabletUI[]; | 367 extern const char kTabletUI[]; |
367 #endif | 368 #endif |
368 | 369 |
369 #if defined(OS_CHROMEOS) | 370 #if defined(OS_CHROMEOS) |
370 // Keep switches in alphabetical order. | 371 // Keep switches in alphabetical order. |
371 extern const char kAshWebUIInit[]; | 372 extern const char kAshWebUIInit[]; |
372 extern const char kDisableBootAnimation[]; | 373 extern const char kDisableBootAnimation[]; |
373 extern const char kDisableGData[]; | 374 extern const char kDisableGData[]; |
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
446 #else | 447 #else |
447 extern const char kEnablePrintPreview[]; | 448 extern const char kEnablePrintPreview[]; |
448 #endif | 449 #endif |
449 | 450 |
450 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in | 451 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in |
451 // alphabetical order, or in one of the ifdefs (also in order in each section). | 452 // alphabetical order, or in one of the ifdefs (also in order in each section). |
452 | 453 |
453 } // namespace switches | 454 } // namespace switches |
454 | 455 |
455 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ | 456 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ |
OLD | NEW |