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

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

Issue 15421011: Use OAuth2 token for sync (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Add commandline switch to toggle between OAuth2 and ClientLogin token Created 7 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 345 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 extern const char kSyncInvalidateXmppLogin[]; 356 extern const char kSyncInvalidateXmppLogin[];
357 extern const char kSyncKeystoreEncryption[]; 357 extern const char kSyncKeystoreEncryption[];
358 extern const char kSyncShortInitialRetryOverride[]; 358 extern const char kSyncShortInitialRetryOverride[];
359 extern const char kSyncNotificationMethod[]; 359 extern const char kSyncNotificationMethod[];
360 extern const char kSyncNotificationHostPort[]; 360 extern const char kSyncNotificationHostPort[];
361 extern const char kSyncServiceURL[]; 361 extern const char kSyncServiceURL[];
362 extern const char kSyncTabFavicons[]; 362 extern const char kSyncTabFavicons[];
363 extern const char kSyncThrowUnrecoverableError[]; 363 extern const char kSyncThrowUnrecoverableError[];
364 extern const char kSyncTrySsltcpFirstForXmpp[]; 364 extern const char kSyncTrySsltcpFirstForXmpp[];
365 extern const char kSyncEnableDeferredStartup[]; 365 extern const char kSyncEnableDeferredStartup[];
366 extern const char kSyncEnableOAuth2Token[];
366 extern const char kSyncfsEnableDirectoryOperation[]; 367 extern const char kSyncfsEnableDirectoryOperation[];
367 extern const char kTabBrowserDragging[]; 368 extern const char kTabBrowserDragging[];
368 extern const char kTabCapture[]; 369 extern const char kTabCapture[];
369 extern const char kTestNaClSandbox[]; 370 extern const char kTestNaClSandbox[];
370 extern const char kTestName[]; 371 extern const char kTestName[];
371 extern const char kTestType[]; 372 extern const char kTestType[];
372 extern const char kTestingChannelID[]; 373 extern const char kTestingChannelID[];
373 extern const char kTrackActiveVisitTime[]; 374 extern const char kTrackActiveVisitTime[];
374 extern const char kTranslateScriptURL[]; 375 extern const char kTranslateScriptURL[];
375 extern const char kTrustedSpdyProxy[]; 376 extern const char kTrustedSpdyProxy[];
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after
450 #else 451 #else
451 extern const char kEnablePrintPreview[]; 452 extern const char kEnablePrintPreview[];
452 #endif 453 #endif
453 454
454 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 455 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
455 // alphabetical order, or in one of the ifdefs (also in order in each section). 456 // alphabetical order, or in one of the ifdefs (also in order in each section).
456 457
457 } // namespace switches 458 } // namespace switches
458 459
459 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 460 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698