OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_ENGINE_SYNCER_H_ | 5 #ifndef SYNC_ENGINE_SYNCER_H_ |
6 #define SYNC_ENGINE_SYNCER_H_ | 6 #define SYNC_ENGINE_SYNCER_H_ |
7 | 7 |
8 #include <utility> | 8 #include <utility> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 ModelTypeSet request_types, | 58 ModelTypeSet request_types, |
59 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource source, | 59 sync_pb::GetUpdatesCallerInfo::GetUpdatesSource source, |
60 sessions::SyncSession* session); | 60 sessions::SyncSession* session); |
61 | 61 |
62 // Requests to download updates for the |request_types|. For a well-behaved | 62 // Requests to download updates for the |request_types|. For a well-behaved |
63 // client with a working connection to the invalidations server, this should | 63 // client with a working connection to the invalidations server, this should |
64 // be unnecessary. It may be invoked periodically to try to keep the client | 64 // be unnecessary. It may be invoked periodically to try to keep the client |
65 // in sync despite bugs or transient failures. | 65 // in sync despite bugs or transient failures. |
66 virtual bool PollSyncShare(ModelTypeSet request_types, | 66 virtual bool PollSyncShare(ModelTypeSet request_types, |
67 sessions::SyncSession* session); | 67 sessions::SyncSession* session); |
68 virtual bool RetrySyncShare(ModelTypeSet request_types, | |
69 sessions::SyncSession* session); | |
70 | 68 |
71 private: | 69 private: |
72 void ApplyUpdates(sessions::SyncSession* session); | 70 void ApplyUpdates(sessions::SyncSession* session); |
73 bool DownloadAndApplyUpdates( | 71 bool DownloadAndApplyUpdates( |
74 ModelTypeSet request_types, | 72 ModelTypeSet request_types, |
75 sessions::SyncSession* session, | 73 sessions::SyncSession* session, |
76 base::Callback<void(sync_pb::ClientToServerMessage*)> build_fn); | 74 base::Callback<void(sync_pb::ClientToServerMessage*)> build_fn); |
77 | 75 |
78 // This function will commit batches of unsynced items to the server until the | 76 // This function will commit batches of unsynced items to the server until the |
79 // number of unsynced and ready to commit items reaches zero or an error is | 77 // number of unsynced and ready to commit items reaches zero or an error is |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 FRIEND_TEST_ALL_PREFIXES(SyncerTest, DeletingEntryWithLocalEdits); | 109 FRIEND_TEST_ALL_PREFIXES(SyncerTest, DeletingEntryWithLocalEdits); |
112 FRIEND_TEST_ALL_PREFIXES(EntryCreatedInNewFolderTest, | 110 FRIEND_TEST_ALL_PREFIXES(EntryCreatedInNewFolderTest, |
113 EntryCreatedInNewFolderMidSync); | 111 EntryCreatedInNewFolderMidSync); |
114 | 112 |
115 DISALLOW_COPY_AND_ASSIGN(Syncer); | 113 DISALLOW_COPY_AND_ASSIGN(Syncer); |
116 }; | 114 }; |
117 | 115 |
118 } // namespace syncer | 116 } // namespace syncer |
119 | 117 |
120 #endif // SYNC_ENGINE_SYNCER_H_ | 118 #endif // SYNC_ENGINE_SYNCER_H_ |
OLD | NEW |