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 #ifndef SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_PROXY_H_ | 5 #ifndef SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_PROXY_H_ |
6 #define SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_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 #include "sync/internal_api/public/non_blocking_sync_common.h" | 10 #include "sync/internal_api/public/non_blocking_sync_common.h" |
11 | 11 |
12 namespace syncer { | 12 namespace syncer_v2 { |
13 class ModelTypeSyncProxyImpl; | 13 class ModelTypeSyncProxyImpl; |
14 } | |
15 | |
16 namespace syncer_v2 { | |
17 | 14 |
18 // Interface for the datatype integration logic from non-sync threads. | 15 // Interface for the datatype integration logic from non-sync threads. |
19 // | 16 // |
20 // See SyncContextProxyImpl for an actual implementation. | 17 // See SyncContextProxyImpl for an actual implementation. |
21 class SYNC_EXPORT_PRIVATE SyncContextProxy { | 18 class SYNC_EXPORT_PRIVATE SyncContextProxy { |
22 public: | 19 public: |
23 SyncContextProxy(); | 20 SyncContextProxy(); |
24 virtual ~SyncContextProxy(); | 21 virtual ~SyncContextProxy(); |
25 | 22 |
26 // Attempts to connect a non-blocking type to the sync context. | 23 // Attempts to connect a non-blocking type to the sync context. |
27 // | 24 // |
28 // Must be called from the thread where the data type lives. | 25 // Must be called from the thread where the data type lives. |
29 virtual void ConnectTypeToSync( | 26 virtual void ConnectTypeToSync( |
30 syncer::ModelType type, | 27 syncer::ModelType type, |
31 const DataTypeState& data_type_state, | 28 const DataTypeState& data_type_state, |
32 const UpdateResponseDataList& saved_pending_updates, | 29 const UpdateResponseDataList& saved_pending_updates, |
33 const base::WeakPtr<syncer::ModelTypeSyncProxyImpl>& type_sync_proxy) = 0; | 30 const base::WeakPtr<ModelTypeSyncProxyImpl>& type_sync_proxy) = 0; |
34 | 31 |
35 // 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. |
36 // | 33 // |
37 // 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 |
38 // receive commit requests for this type. It should also stop requesting | 35 // receive commit requests for this type. It should also stop requesting |
39 // and applying updates for this type, too. | 36 // and applying updates for this type, too. |
40 virtual void Disconnect(syncer::ModelType type) = 0; | 37 virtual void Disconnect(syncer::ModelType type) = 0; |
41 | 38 |
42 // Creates a clone of this SyncContextProxy. | 39 // Creates a clone of this SyncContextProxy. |
43 virtual scoped_ptr<SyncContextProxy> Clone() const = 0; | 40 virtual scoped_ptr<SyncContextProxy> Clone() const = 0; |
44 }; | 41 }; |
45 | 42 |
46 } // namespace syncer | 43 } // namespace syncer |
47 | 44 |
48 #endif // SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_PROXY_H_ | 45 #endif // SYNC_INTERNAL_API_PUBLIC_SYNC_CONTEXT_PROXY_H_ |
OLD | NEW |