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: components/sync/engine_impl/update_handler.h

Issue 2258873003: [Sync] Move sessions/ to engine/cycle/ and rename things to match. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address comments. Created 4 years, 4 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
« no previous file with comments | « components/sync/engine_impl/update_applicator.h ('k') | components/sync/protocol/client_debug_info.proto » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/sync/engine_impl/update_handler.h
diff --git a/components/sync/engine_impl/update_handler.h b/components/sync/engine_impl/update_handler.h
index df3b6e13f51d411eb3eb7b33e8c23f1d33a38778..7c2b6ae18070870efec7af2a2e653efa0acb8e11 100644
--- a/components/sync/engine_impl/update_handler.h
+++ b/components/sync/engine_impl/update_handler.h
@@ -19,11 +19,8 @@ typedef std::vector<const sync_pb::SyncEntity*> SyncEntityList;
namespace syncer {
-namespace sessions {
-class StatusController;
-}
-
class ModelSafeWorker;
+class StatusController;
// This class represents an entity that can request, receive, and apply updates
// from the sync server.
@@ -59,15 +56,15 @@ class UpdateHandler {
const sync_pb::DataTypeProgressMarker& progress_marker,
const sync_pb::DataTypeContext& mutated_context,
const SyncEntityList& applicable_updates,
- sessions::StatusController* status) = 0;
+ StatusController* status) = 0;
// Called at the end of a non-configure GetUpdates loop to apply any unapplied
// updates.
- virtual void ApplyUpdates(sessions::StatusController* status) = 0;
+ virtual void ApplyUpdates(StatusController* status) = 0;
// Called at the end of a configure GetUpdates loop to perform any required
// post-initial-download update application.
- virtual void PassiveApplyUpdates(sessions::StatusController* status) = 0;
+ virtual void PassiveApplyUpdates(StatusController* status) = 0;
};
} // namespace syncer
« no previous file with comments | « components/sync/engine_impl/update_applicator.h ('k') | components/sync/protocol/client_debug_info.proto » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698