OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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 // Syncer unit tests. Unfortunately a lot of these tests | 5 // Syncer unit tests. Unfortunately a lot of these tests |
6 // are outdated and need to be reworked and updated. | 6 // are outdated and need to be reworked and updated. |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
107 return false; | 107 return false; |
108 } | 108 } |
109 virtual void OnReceivedLongPollIntervalUpdate( | 109 virtual void OnReceivedLongPollIntervalUpdate( |
110 const base::TimeDelta& new_interval) { | 110 const base::TimeDelta& new_interval) { |
111 last_long_poll_interval_received_ = new_interval; | 111 last_long_poll_interval_received_ = new_interval; |
112 } | 112 } |
113 virtual void OnReceivedShortPollIntervalUpdate( | 113 virtual void OnReceivedShortPollIntervalUpdate( |
114 const base::TimeDelta& new_interval) { | 114 const base::TimeDelta& new_interval) { |
115 last_short_poll_interval_received_ = new_interval; | 115 last_short_poll_interval_received_ = new_interval; |
116 } | 116 } |
| 117 virtual void OnShouldStopSyncingPermanently() { |
| 118 } |
117 | 119 |
118 // ModelSafeWorkerRegistrar implementation. | 120 // ModelSafeWorkerRegistrar implementation. |
119 virtual void GetWorkers(std::vector<ModelSafeWorker*>* out) { | 121 virtual void GetWorkers(std::vector<ModelSafeWorker*>* out) { |
120 out->push_back(worker_.get()); | 122 out->push_back(worker_.get()); |
121 } | 123 } |
122 | 124 |
123 virtual void GetModelSafeRoutingInfo(ModelSafeRoutingInfo* out) { | 125 virtual void GetModelSafeRoutingInfo(ModelSafeRoutingInfo* out) { |
124 // We're just testing the sync engine here, so we shunt everything to | 126 // We're just testing the sync engine here, so we shunt everything to |
125 // the SyncerThread. Datatypes which aren't enabled aren't in the map. | 127 // the SyncerThread. Datatypes which aren't enabled aren't in the map. |
126 for (int i = 0; i < syncable::MODEL_TYPE_COUNT; ++i) { | 128 for (int i = 0; i < syncable::MODEL_TYPE_COUNT; ++i) { |
(...skipping 4225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4352 Add(low_id_); | 4354 Add(low_id_); |
4353 Add(high_id_); | 4355 Add(high_id_); |
4354 syncer_->SyncShare(this); | 4356 syncer_->SyncShare(this); |
4355 ExpectLocalOrderIsByServerId(); | 4357 ExpectLocalOrderIsByServerId(); |
4356 } | 4358 } |
4357 | 4359 |
4358 const SyncerTest::CommitOrderingTest | 4360 const SyncerTest::CommitOrderingTest |
4359 SyncerTest::CommitOrderingTest::LAST_COMMIT_ITEM = {-1, TestIdFactory::root()}; | 4361 SyncerTest::CommitOrderingTest::LAST_COMMIT_ITEM = {-1, TestIdFactory::root()}; |
4360 | 4362 |
4361 } // namespace browser_sync | 4363 } // namespace browser_sync |
OLD | NEW |