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

Unified Diff: chrome/browser/sync/glue/sync_backend_host.cc

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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/sync/glue/sync_backend_host.cc
diff --git a/chrome/browser/sync/glue/sync_backend_host.cc b/chrome/browser/sync/glue/sync_backend_host.cc
index 0ca33f1681cb5342c20c548908581bf34c82394b..44afa8533d1738d67c2a2b39a0a7e8884226744d 100644
--- a/chrome/browser/sync/glue/sync_backend_host.cc
+++ b/chrome/browser/sync/glue/sync_backend_host.cc
@@ -323,6 +323,8 @@ notifier::NotifierOptions ParseNotifierOptions(
request_context_getter) {
notifier::NotifierOptions notifier_options;
notifier_options.request_context_getter = request_context_getter;
+ if (command_line.HasSwitch(switches::kSyncEnableOAuth2Token))
+ notifier_options.auth_mechanism = "X-OAUTH2";
if (command_line.HasSwitch(switches::kSyncNotificationHostPort)) {
notifier_options.xmpp_host_port =
@@ -480,7 +482,8 @@ void SyncBackendHost::Initialize(
sync_prefs_->GetKeystoreEncryptionBootstrapToken(),
new InternalComponentsFactoryImpl(factory_switches),
unrecoverable_error_handler,
- report_unrecoverable_error_function));
+ report_unrecoverable_error_function,
+ cl->HasSwitch(switches::kSyncEnableOAuth2Token)));
}
void SyncBackendHost::UpdateCredentials(const SyncCredentials& credentials) {
@@ -964,7 +967,8 @@ SyncBackendHost::DoInitializeOptions::DoInitializeOptions(
InternalComponentsFactory* internal_components_factory,
syncer::UnrecoverableErrorHandler* unrecoverable_error_handler,
syncer::ReportUnrecoverableErrorFunction
- report_unrecoverable_error_function)
+ report_unrecoverable_error_function,
+ bool use_oauth2_token)
: sync_loop(sync_loop),
registrar(registrar),
routing_info(routing_info),
@@ -984,7 +988,8 @@ SyncBackendHost::DoInitializeOptions::DoInitializeOptions(
internal_components_factory(internal_components_factory),
unrecoverable_error_handler(unrecoverable_error_handler),
report_unrecoverable_error_function(
- report_unrecoverable_error_function) {
+ report_unrecoverable_error_function),
+ use_oauth2_token(use_oauth2_token) {
}
SyncBackendHost::DoInitializeOptions::~DoInitializeOptions() {}
@@ -1261,7 +1266,8 @@ void SyncBackendHost::Core::DoInitialize(const DoInitializeOptions& options) {
options.internal_components_factory),
&encryptor_,
options.unrecoverable_error_handler,
- options.report_unrecoverable_error_function);
+ options.report_unrecoverable_error_function,
+ options.use_oauth2_token);
// |sync_manager_| may end up being NULL here in tests (in
// synchronous initialization mode).

Powered by Google App Engine
This is Rietveld 408576698