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

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

Issue 1108333002: Compile-time and run-time flags for top chrome material design. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 7 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
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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
290 extern const char kSupervisedUserSafeSites[]; 290 extern const char kSupervisedUserSafeSites[];
291 extern const char kSupervisedUserSyncToken[]; 291 extern const char kSupervisedUserSyncToken[];
292 extern const char kSyncShortInitialRetryOverride[]; 292 extern const char kSyncShortInitialRetryOverride[];
293 extern const char kSyncServiceURL[]; 293 extern const char kSyncServiceURL[];
294 extern const char kSyncDisableDeferredStartup[]; 294 extern const char kSyncDisableDeferredStartup[];
295 extern const char kSyncDeferredStartupTimeoutSeconds[]; 295 extern const char kSyncDeferredStartupTimeoutSeconds[];
296 extern const char kSyncEnableGetUpdateAvoidance[]; 296 extern const char kSyncEnableGetUpdateAvoidance[];
297 extern const char kSyncDisableBackup[]; 297 extern const char kSyncDisableBackup[];
298 extern const char kSyncDisableRollback[]; 298 extern const char kSyncDisableRollback[];
299 extern const char kTestName[]; 299 extern const char kTestName[];
300 #ifdef ENABLE_TOPCHROME_MD
Dan Beam 2015/06/24 21:45:07 prefer #if defined() to #ifdef
301 extern const char kTopChromeMD[];
Dan Beam 2015/06/24 21:45:07 ^ this is never used and I have no idea why it's n
302 extern const char kTopChromeMDEnabled[];
303 extern const char kTopChromeMDDisabled[];
304 #endif
300 extern const char kTrustedSpdyProxy[]; 305 extern const char kTrustedSpdyProxy[];
301 extern const char kTryChromeAgain[]; 306 extern const char kTryChromeAgain[];
302 extern const char kUnlimitedStorage[]; 307 extern const char kUnlimitedStorage[];
303 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; 308 extern const char kUnsafelyTreatInsecureOriginAsSecure[];
304 extern const char kUseSimpleCacheBackend[]; 309 extern const char kUseSimpleCacheBackend[];
305 extern const char kUseSpdy[]; 310 extern const char kUseSpdy[];
306 extern const char kUserAgent[]; 311 extern const char kUserAgent[];
307 extern const char kUserDataDir[]; 312 extern const char kUserDataDir[];
308 extern const char kV8PacMojoInProcess[]; 313 extern const char kV8PacMojoInProcess[];
309 extern const char kV8PacMojoOutOfProcess[]; 314 extern const char kV8PacMojoOutOfProcess[];
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
399 #if defined(OS_CHROMEOS) 404 #if defined(OS_CHROMEOS)
400 bool PowerOverlayEnabled(); 405 bool PowerOverlayEnabled();
401 #endif 406 #endif
402 407
403 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 408 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
404 // alphabetical order, or in one of the ifdefs (also in order in each section). 409 // alphabetical order, or in one of the ifdefs (also in order in each section).
405 410
406 } // namespace switches 411 } // namespace switches
407 412
408 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 413 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698