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 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: Code clean-up 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 299 matching lines...) Expand 10 before | Expand all | Expand 10 after
310 extern const char kSupervisedUserSafeSites[]; 310 extern const char kSupervisedUserSafeSites[];
311 extern const char kSupervisedUserSyncToken[]; 311 extern const char kSupervisedUserSyncToken[];
312 extern const char kSyncShortInitialRetryOverride[]; 312 extern const char kSyncShortInitialRetryOverride[];
313 extern const char kSyncServiceURL[]; 313 extern const char kSyncServiceURL[];
314 extern const char kSyncDisableDeferredStartup[]; 314 extern const char kSyncDisableDeferredStartup[];
315 extern const char kSyncDeferredStartupTimeoutSeconds[]; 315 extern const char kSyncDeferredStartupTimeoutSeconds[];
316 extern const char kSyncEnableGetUpdateAvoidance[]; 316 extern const char kSyncEnableGetUpdateAvoidance[];
317 extern const char kSyncDisableBackup[]; 317 extern const char kSyncDisableBackup[];
318 extern const char kSyncDisableRollback[]; 318 extern const char kSyncDisableRollback[];
319 extern const char kTestName[]; 319 extern const char kTestName[];
320 #ifdef ENABLE_TOPCHROME_MD
321 extern const char kTopChromeMD[];
322 extern const char kTopChromeMDEnabled[];
323 extern const char kTopChromeMDDisabled[];
324 #endif
320 extern const char kTrustedSpdyProxy[]; 325 extern const char kTrustedSpdyProxy[];
321 extern const char kTryChromeAgain[]; 326 extern const char kTryChromeAgain[];
322 extern const char kUninstall[]; 327 extern const char kUninstall[];
323 extern const char kUnlimitedStorage[]; 328 extern const char kUnlimitedStorage[];
324 extern const char kUseSimpleCacheBackend[]; 329 extern const char kUseSimpleCacheBackend[];
325 extern const char kUseSpdy[]; 330 extern const char kUseSpdy[];
326 extern const char kUserAgent[]; 331 extern const char kUserAgent[];
327 extern const char kUserDataDir[]; 332 extern const char kUserDataDir[];
328 extern const char kV8PacMojoInProcess[]; 333 extern const char kV8PacMojoInProcess[];
329 extern const char kV8PacMojoOutOfProcess[]; 334 extern const char kV8PacMojoOutOfProcess[];
(...skipping 76 matching lines...) Expand 10 before | Expand all | Expand 10 after
406 #if defined(OS_CHROMEOS) 411 #if defined(OS_CHROMEOS)
407 bool PowerOverlayEnabled(); 412 bool PowerOverlayEnabled();
408 #endif 413 #endif
409 414
410 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 415 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
411 // alphabetical order, or in one of the ifdefs (also in order in each section). 416 // alphabetical order, or in one of the ifdefs (also in order in each section).
412 417
413 } // namespace switches 418 } // namespace switches
414 419
415 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 420 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698