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

Unified Diff: sync/test/engine/fake_sync_scheduler.cc

Issue 14963002: sync: Report GetUpdate triggers to the server (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Review response: lots of renames Created 7 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: sync/test/engine/fake_sync_scheduler.cc
diff --git a/sync/test/engine/fake_sync_scheduler.cc b/sync/test/engine/fake_sync_scheduler.cc
index 826119bf712aa441c12a02c34aa448b1f9eb6498..873dc54d0785ca8c4695cb18256bd8736ceba564 100644
--- a/sync/test/engine/fake_sync_scheduler.cc
+++ b/sync/test/engine/fake_sync_scheduler.cc
@@ -18,17 +18,22 @@ void FakeSyncScheduler::RequestStop(const base::Closure& callback) {
created_on_loop_->PostTask(FROM_HERE, callback);
}
-void FakeSyncScheduler::ScheduleNudgeAsync(
- const base::TimeDelta& delay,
- NudgeSource source,
- ModelTypeSet types,
- const tracked_objects::Location& nudge_location) {
+void FakeSyncScheduler::ScheduleLocalNudge(
+ const base::TimeDelta& desired_delay,
+ ModelTypeSet types,
+ const tracked_objects::Location& nudge_location) {
}
-void FakeSyncScheduler::ScheduleNudgeWithStatesAsync(
- const base::TimeDelta& delay, NudgeSource source,
- const ModelTypeInvalidationMap& invalidation_map,
- const tracked_objects::Location& nudge_location) {
+void FakeSyncScheduler::ScheduleLocalRefreshRequest(
+ const base::TimeDelta& desired_delay,
+ ModelTypeSet types,
+ const tracked_objects::Location& nudge_location) {
+}
+
+void FakeSyncScheduler::ScheduleInvalidationNudge(
+ const base::TimeDelta& desired_delay,
+ const ModelTypeInvalidationMap& invalidation_map,
+ const tracked_objects::Location& nudge_location) {
}
bool FakeSyncScheduler::ScheduleConfiguration(

Powered by Google App Engine
This is Rietveld 408576698