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

Side by Side Diff: sync/internal_api/sync_context_proxy_impl.cc

Issue 442053002: sync: Add non-blocking type encryption (retry) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 4 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 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 "sync/internal_api/sync_context_proxy_impl.h" 5 #include "sync/internal_api/sync_context_proxy_impl.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/single_thread_task_runner.h" 9 #include "base/single_thread_task_runner.h"
10 #include "base/thread_task_runner_handle.h" 10 #include "base/thread_task_runner_handle.h"
11 #include "sync/internal_api/public/non_blocking_sync_common.h" 11 #include "sync/internal_api/public/non_blocking_sync_common.h"
12 #include "sync/internal_api/public/sync_context.h" 12 #include "sync/internal_api/public/sync_context.h"
13 13
14 namespace syncer { 14 namespace syncer {
15 15
16 SyncContextProxyImpl::SyncContextProxyImpl( 16 SyncContextProxyImpl::SyncContextProxyImpl(
17 const scoped_refptr<base::SequencedTaskRunner>& sync_task_runner, 17 const scoped_refptr<base::SequencedTaskRunner>& sync_task_runner,
18 const base::WeakPtr<SyncContext>& sync_context) 18 const base::WeakPtr<SyncContext>& sync_context)
19 : sync_task_runner_(sync_task_runner), sync_context_(sync_context) { 19 : sync_task_runner_(sync_task_runner), sync_context_(sync_context) {
20 } 20 }
21 21
22 SyncContextProxyImpl::~SyncContextProxyImpl() { 22 SyncContextProxyImpl::~SyncContextProxyImpl() {
23 } 23 }
24 24
25 void SyncContextProxyImpl::ConnectTypeToSync( 25 void SyncContextProxyImpl::ConnectTypeToSync(
26 ModelType type, 26 ModelType type,
27 const DataTypeState& data_type_state, 27 const DataTypeState& data_type_state,
28 const UpdateResponseDataList& saved_pending_updates,
28 const base::WeakPtr<ModelTypeSyncProxyImpl>& type_sync_proxy) { 29 const base::WeakPtr<ModelTypeSyncProxyImpl>& type_sync_proxy) {
29 VLOG(1) << "ConnectTypeToSync: " << ModelTypeToString(type); 30 VLOG(1) << "ConnectTypeToSync: " << ModelTypeToString(type);
30 sync_task_runner_->PostTask(FROM_HERE, 31 sync_task_runner_->PostTask(FROM_HERE,
31 base::Bind(&SyncContext::ConnectSyncTypeToWorker, 32 base::Bind(&SyncContext::ConnectSyncTypeToWorker,
32 sync_context_, 33 sync_context_,
33 type, 34 type,
34 data_type_state, 35 data_type_state,
36 saved_pending_updates,
35 base::ThreadTaskRunnerHandle::Get(), 37 base::ThreadTaskRunnerHandle::Get(),
36 type_sync_proxy)); 38 type_sync_proxy));
37 } 39 }
38 40
39 void SyncContextProxyImpl::Disconnect(ModelType type) { 41 void SyncContextProxyImpl::Disconnect(ModelType type) {
40 sync_task_runner_->PostTask( 42 sync_task_runner_->PostTask(
41 FROM_HERE, 43 FROM_HERE,
42 base::Bind(&SyncContext::DisconnectSyncWorker, sync_context_, type)); 44 base::Bind(&SyncContext::DisconnectSyncWorker, sync_context_, type));
43 } 45 }
44 46
45 scoped_ptr<SyncContextProxy> SyncContextProxyImpl::Clone() const { 47 scoped_ptr<SyncContextProxy> SyncContextProxyImpl::Clone() const {
46 return scoped_ptr<SyncContextProxy>( 48 return scoped_ptr<SyncContextProxy>(
47 new SyncContextProxyImpl(sync_task_runner_, sync_context_)); 49 new SyncContextProxyImpl(sync_task_runner_, sync_context_));
48 } 50 }
49 51
50 } // namespace syncer 52 } // namespace syncer
OLDNEW
« no previous file with comments | « sync/internal_api/sync_context_proxy_impl.h ('k') | sync/internal_api/sync_encryption_handler_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698