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

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

Issue 266233002: Add BackupRollbackController for starting backup/rollback (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 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 | 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 320 matching lines...) Expand 10 before | Expand all | Expand 10 after
331 extern const char kSyncInvalidateXmppLogin[]; 331 extern const char kSyncInvalidateXmppLogin[];
332 extern const char kSyncShortInitialRetryOverride[]; 332 extern const char kSyncShortInitialRetryOverride[];
333 extern const char kSyncNotificationHostPort[]; 333 extern const char kSyncNotificationHostPort[];
334 extern const char kSyncServiceURL[]; 334 extern const char kSyncServiceURL[];
335 extern const char kSyncThrowUnrecoverableError[]; 335 extern const char kSyncThrowUnrecoverableError[];
336 extern const char kSyncTrySsltcpFirstForXmpp[]; 336 extern const char kSyncTrySsltcpFirstForXmpp[];
337 extern const char kSyncDisableDeferredStartup[]; 337 extern const char kSyncDisableDeferredStartup[];
338 extern const char kSyncDeferredStartupTimeoutSeconds[]; 338 extern const char kSyncDeferredStartupTimeoutSeconds[];
339 extern const char kSyncEnableGetUpdateAvoidance[]; 339 extern const char kSyncEnableGetUpdateAvoidance[];
340 extern const char kSyncfsEnableDirectoryOperation[]; 340 extern const char kSyncfsEnableDirectoryOperation[];
341 extern const char kSyncEnableBackupRollback[];
341 extern const char kTabCapture[]; 342 extern const char kTabCapture[];
342 extern const char kTestName[]; 343 extern const char kTestName[];
343 extern const char kTrustedSpdyProxy[]; 344 extern const char kTrustedSpdyProxy[];
344 extern const char kTryChromeAgain[]; 345 extern const char kTryChromeAgain[];
345 extern const char kUninstall[]; 346 extern const char kUninstall[];
346 extern const char kUnlimitedStorage[]; 347 extern const char kUnlimitedStorage[];
347 extern const char kUseSimpleCacheBackend[]; 348 extern const char kUseSimpleCacheBackend[];
348 extern const char kUseSpdy[]; 349 extern const char kUseSpdy[];
349 extern const char kUserAgent[]; 350 extern const char kUserAgent[];
350 extern const char kUserDataDir[]; 351 extern const char kUserDataDir[];
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after
421 #else 422 #else
422 extern const char kEnablePrintPreview[]; 423 extern const char kEnablePrintPreview[];
423 #endif 424 #endif
424 425
425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 426 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
426 // alphabetical order, or in one of the ifdefs (also in order in each section). 427 // alphabetical order, or in one of the ifdefs (also in order in each section).
427 428
428 } // namespace switches 429 } // namespace switches
429 430
430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 431 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698