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

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: 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 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
287 extern const char kSupervisedUserSafeSites[]; 287 extern const char kSupervisedUserSafeSites[];
288 extern const char kSupervisedUserSyncToken[]; 288 extern const char kSupervisedUserSyncToken[];
289 extern const char kSyncShortInitialRetryOverride[]; 289 extern const char kSyncShortInitialRetryOverride[];
290 extern const char kSyncServiceURL[]; 290 extern const char kSyncServiceURL[];
291 extern const char kSyncDisableDeferredStartup[]; 291 extern const char kSyncDisableDeferredStartup[];
292 extern const char kSyncDeferredStartupTimeoutSeconds[]; 292 extern const char kSyncDeferredStartupTimeoutSeconds[];
293 extern const char kSyncEnableGetUpdateAvoidance[]; 293 extern const char kSyncEnableGetUpdateAvoidance[];
294 extern const char kSyncDisableBackup[]; 294 extern const char kSyncDisableBackup[];
295 extern const char kSyncDisableRollback[]; 295 extern const char kSyncDisableRollback[];
296 extern const char kTestName[]; 296 extern const char kTestName[];
297 #ifdef ENABLE_TOPCHROME_MD
298 extern const char kTopChromeMD[];
299 extern const char kTopChromeMDEnabled[];
300 extern const char kTopChromeMDDisabled[];
301 #endif
302 extern const char kTrustedSpdyProxy[]; 297 extern const char kTrustedSpdyProxy[];
303 extern const char kTryChromeAgain[]; 298 extern const char kTryChromeAgain[];
304 extern const char kUnlimitedStorage[]; 299 extern const char kUnlimitedStorage[];
305 extern const char kUnsafelyTreatInsecureOriginAsSecure[]; 300 extern const char kUnsafelyTreatInsecureOriginAsSecure[];
306 extern const char kUseSimpleCacheBackend[]; 301 extern const char kUseSimpleCacheBackend[];
307 extern const char kUseSpdy[]; 302 extern const char kUseSpdy[];
308 extern const char kUserAgent[]; 303 extern const char kUserAgent[];
309 extern const char kUserDataDir[]; 304 extern const char kUserDataDir[];
310 extern const char kV8PacMojoInProcess[]; 305 extern const char kV8PacMojoInProcess[];
311 extern const char kV8PacMojoOutOfProcess[]; 306 extern const char kV8PacMojoOutOfProcess[];
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
401 #if defined(OS_CHROMEOS) 396 #if defined(OS_CHROMEOS)
402 bool PowerOverlayEnabled(); 397 bool PowerOverlayEnabled();
403 #endif 398 #endif
404 399
405 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 400 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
406 // alphabetical order, or in one of the ifdefs (also in order in each section). 401 // alphabetical order, or in one of the ifdefs (also in order in each section).
407 402
408 } // namespace switches 403 } // namespace switches
409 404
410 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 405 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698