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

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

Issue 1188713007: Moved --top-chrome-md command line switch from chrome_switches to ui_base_switches. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed typedef in unittest. Created 5 years, 6 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 278 matching lines...) Expand 10 before | Expand all | Expand 10 after
289 extern const char kSupervisedUserSyncToken[]; 289 extern const char kSupervisedUserSyncToken[];
290 extern const char kSyncShortInitialRetryOverride[]; 290 extern const char kSyncShortInitialRetryOverride[];
291 extern const char kSyncServiceURL[]; 291 extern const char kSyncServiceURL[];
292 extern const char kSyncDisableDeferredStartup[]; 292 extern const char kSyncDisableDeferredStartup[];
293 extern const char kSyncDeferredStartupTimeoutSeconds[]; 293 extern const char kSyncDeferredStartupTimeoutSeconds[];
294 extern const char kSyncEnableGetUpdateAvoidance[]; 294 extern const char kSyncEnableGetUpdateAvoidance[];
295 extern const char kSyncEnableClearDataOnPassphraseEncryption[]; 295 extern const char kSyncEnableClearDataOnPassphraseEncryption[];
296 extern const char kSyncDisableBackup[]; 296 extern const char kSyncDisableBackup[];
297 extern const char kSyncDisableRollback[]; 297 extern const char kSyncDisableRollback[];
298 extern const char kTestName[]; 298 extern const char kTestName[];
299 #ifdef ENABLE_TOPCHROME_MD
300 extern const char kTopChromeMD[];
301 extern const char kTopChromeMDEnabled[];
302 extern const char kTopChromeMDDisabled[];
303 #endif
304 extern const char kTrustedSpdyProxy[]; 299 extern const char kTrustedSpdyProxy[];
305 extern const char kTryChromeAgain[]; 300 extern const char kTryChromeAgain[];
306 extern const char kUnlimitedStorage[]; 301 extern const char kUnlimitedStorage[];
307 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; 302 extern const char kUnsafelyTreatInsecureOriginAsSecure[];
308 extern const char kUseSimpleCacheBackend[]; 303 extern const char kUseSimpleCacheBackend[];
309 extern const char kUseSpdy[]; 304 extern const char kUseSpdy[];
310 extern const char kUserAgent[]; 305 extern const char kUserAgent[];
311 extern const char kUserDataDir[]; 306 extern const char kUserDataDir[];
312 extern const char kV8PacMojoInProcess[]; 307 extern const char kV8PacMojoInProcess[];
313 extern const char kV8PacMojoOutOfProcess[]; 308 extern const char kV8PacMojoOutOfProcess[];
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
403 #if defined(OS_CHROMEOS) 398 #if defined(OS_CHROMEOS)
404 bool PowerOverlayEnabled(); 399 bool PowerOverlayEnabled();
405 #endif 400 #endif
406 401
407 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 402 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
408 // alphabetical order, or in one of the ifdefs (also in order in each section). 403 // alphabetical order, or in one of the ifdefs (also in order in each section).
409 404
410 } // namespace switches 405 } // namespace switches
411 406
412 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 407 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698