Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1)

Side by Side Diff: chrome/common/chrome_switches.h

Issue 191093002: Simplify the user agent code some more since after r255534 it's not affected by the site's URL. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 6 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 378 matching lines...) Expand 10 before | Expand all | Expand 10 after
389 extern const char kTestType[]; 389 extern const char kTestType[];
390 extern const char kTestingChannelID[]; 390 extern const char kTestingChannelID[];
391 extern const char kTrustedSpdyProxy[]; 391 extern const char kTrustedSpdyProxy[];
392 extern const char kTryChromeAgain[]; 392 extern const char kTryChromeAgain[];
393 extern const char kUninstallExtension[]; 393 extern const char kUninstallExtension[];
394 extern const char kUninstall[]; 394 extern const char kUninstall[];
395 extern const char kUnlimitedStorage[]; 395 extern const char kUnlimitedStorage[];
396 extern const char kUseSimpleCacheBackend[]; 396 extern const char kUseSimpleCacheBackend[];
397 extern const char kUseSpdy[]; 397 extern const char kUseSpdy[];
398 extern const char kUseSpellingSuggestions[]; 398 extern const char kUseSpellingSuggestions[];
399 extern const char kUserAgent[];
399 extern const char kUserDataDir[]; 400 extern const char kUserDataDir[];
400 extern const char kValidateCrx[]; 401 extern const char kValidateCrx[];
401 extern const char kVariationsServerURL[]; 402 extern const char kVariationsServerURL[];
402 extern const char kVersion[]; 403 extern const char kVersion[];
403 extern const char kWhitelistedExtensionID[]; 404 extern const char kWhitelistedExtensionID[];
404 extern const char kWindowPosition[]; 405 extern const char kWindowPosition[];
405 extern const char kWindowSize[]; 406 extern const char kWindowSize[];
406 extern const char kWinHttpProxyResolver[]; 407 extern const char kWinHttpProxyResolver[];
407 408
408 #if defined(ENABLE_PLUGIN_INSTALLATION) 409 #if defined(ENABLE_PLUGIN_INSTALLATION)
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
470 #else 471 #else
471 extern const char kEnablePrintPreview[]; 472 extern const char kEnablePrintPreview[];
472 #endif 473 #endif
473 474
474 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 475 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
475 // alphabetical order, or in one of the ifdefs (also in order in each section). 476 // alphabetical order, or in one of the ifdefs (also in order in each section).
476 477
477 } // namespace switches 478 } // namespace switches
478 479
479 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 480 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698