| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #include "components/sync_driver/profile_sync_auth_provider.h" | 5 #include "components/sync_driver/profile_sync_auth_provider.h" |
| 6 | 6 |
| 7 #include "base/bind.h" | 7 #include "base/bind.h" |
| 8 #include "base/location.h" | 8 #include "base/location.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/single_thread_task_runner.h" | 10 #include "base/single_thread_task_runner.h" |
| 11 #include "base/thread_task_runner_handle.h" | 11 #include "base/threading/thread_task_runner_handle.h" |
| 12 #include "components/signin/core/browser/profile_oauth2_token_service.h" | 12 #include "components/signin/core/browser/profile_oauth2_token_service.h" |
| 13 #include "google_apis/gaia/gaia_constants.h" | 13 #include "google_apis/gaia/gaia_constants.h" |
| 14 | 14 |
| 15 // This is thin proxy class for forwarding calls between sync and UI threads. | 15 // This is thin proxy class for forwarding calls between sync and UI threads. |
| 16 // The main purpose is to hide the fact that ProfileSyncAuthProvider and | 16 // The main purpose is to hide the fact that ProfileSyncAuthProvider and |
| 17 // SyncThreadProxy have independent lifetimes. If ProfileSyncAuthProvider is | 17 // SyncThreadProxy have independent lifetimes. If ProfileSyncAuthProvider is |
| 18 // destroyed first calls to RequestAccessToken will never complete. This is fine | 18 // destroyed first calls to RequestAccessToken will never complete. This is fine |
| 19 // since sync thread is not blocked and is in the process of shutdown anyway. | 19 // since sync thread is not blocked and is in the process of shutdown anyway. |
| 20 class ProfileSyncAuthProvider::SyncThreadProxy | 20 class ProfileSyncAuthProvider::SyncThreadProxy |
| 21 : public syncer::SyncAuthProvider, | 21 : public syncer::SyncAuthProvider, |
| (...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 129 token_service_->InvalidateAccessToken(account_id_, oauth2_scope_, token); | 129 token_service_->InvalidateAccessToken(account_id_, oauth2_scope_, token); |
| 130 } | 130 } |
| 131 | 131 |
| 132 std::unique_ptr<syncer::SyncAuthProvider> | 132 std::unique_ptr<syncer::SyncAuthProvider> |
| 133 ProfileSyncAuthProvider::CreateProviderForSyncThread() { | 133 ProfileSyncAuthProvider::CreateProviderForSyncThread() { |
| 134 DCHECK(CalledOnValidThread()); | 134 DCHECK(CalledOnValidThread()); |
| 135 std::unique_ptr<syncer::SyncAuthProvider> auth_provider(new SyncThreadProxy( | 135 std::unique_ptr<syncer::SyncAuthProvider> auth_provider(new SyncThreadProxy( |
| 136 weak_factory_.GetWeakPtr(), base::ThreadTaskRunnerHandle::Get())); | 136 weak_factory_.GetWeakPtr(), base::ThreadTaskRunnerHandle::Get())); |
| 137 return auth_provider; | 137 return auth_provider; |
| 138 } | 138 } |
| OLD | NEW |