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

Side by Side Diff: sync/internal_api/public/sync_context_proxy.h

Issue 351523003: sync: Mass rename of non-blocking sync classes (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: const ref some smart pointers Created 6 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 | 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 #ifndef SYNC_INTERNAL_API_PUBLIC_SYNC_CORE_PROXY_H_ 5 #ifndef SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_PROXY_H_
6 #define SYNC_INTERNAL_API_PUBLIC_SYNC_CORE_PROXY_H_ 6 #define SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_PROXY_H_
7 7
8 #include "base/memory/weak_ptr.h" 8 #include "base/memory/weak_ptr.h"
9 #include "sync/internal_api/public/base/model_type.h" 9 #include "sync/internal_api/public/base/model_type.h"
10 10
11 namespace syncer { 11 namespace syncer {
12 12
13 class NonBlockingTypeProcessor; 13 class ModelTypeSyncProxyImpl;
14 struct DataTypeState; 14 struct DataTypeState;
15 15
16 // Interface for the datatype integration logic from non-sync threads. 16 // Interface for the datatype integration logic from non-sync threads.
17 // 17 //
18 // See SyncCoreProxyImpl for an actual implementation. 18 // See SyncContextProxyImpl for an actual implementation.
19 class SYNC_EXPORT_PRIVATE SyncCoreProxy { 19 class SYNC_EXPORT_PRIVATE SyncContextProxy {
20 public: 20 public:
21 SyncCoreProxy(); 21 SyncContextProxy();
22 virtual ~SyncCoreProxy(); 22 virtual ~SyncContextProxy();
23 23
24 // Attempts to connect a non-blocking type to the sync core. 24 // Attempts to connect a non-blocking type to the sync context.
25 // 25 //
26 // Must be called from the thread where the data type lives. 26 // Must be called from the thread where the data type lives.
27 virtual void ConnectTypeToCore( 27 virtual void ConnectTypeToSync(
28 syncer::ModelType type, 28 syncer::ModelType type,
29 const DataTypeState& data_type_state, 29 const DataTypeState& data_type_state,
30 base::WeakPtr<NonBlockingTypeProcessor> type_processor) = 0; 30 const base::WeakPtr<ModelTypeSyncProxyImpl>& type_sync_proxy) = 0;
31 31
32 // Tells the syncer that we're no longer interested in syncing this type. 32 // Tells the syncer that we're no longer interested in syncing this type.
33 // 33 //
34 // Once this takes effect, the syncer can assume that it will no longer 34 // Once this takes effect, the syncer can assume that it will no longer
35 // receive commit requests for this type. It should also stop requesting 35 // receive commit requests for this type. It should also stop requesting
36 // and applying updates for this type, too. 36 // and applying updates for this type, too.
37 virtual void Disconnect(syncer::ModelType type) = 0; 37 virtual void Disconnect(syncer::ModelType type) = 0;
38 38
39 // Creates a clone of this SyncCoreProxy. 39 // Creates a clone of this SyncContextProxy.
40 virtual scoped_ptr<SyncCoreProxy> Clone() const = 0; 40 virtual scoped_ptr<SyncContextProxy> Clone() const = 0;
41 }; 41 };
42 42
43 } // namespace syncer 43 } // namespace syncer
44 44
45 #endif // SYNC_INTERNAL_API_PUBLIC_SYNC_CORE_PROXY_H_ 45 #endif // SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_PROXY_H_
OLDNEW
« no previous file with comments | « sync/engine/sync_thread_sync_entity_unittest.cc ('k') | sync/internal_api/public/sync_core_proxy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698