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

Unified Diff: components/sync/engine_impl/get_updates_delegate.cc

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
Index: components/sync/engine_impl/get_updates_delegate.cc
diff --git a/components/sync/engine_impl/get_updates_delegate.cc b/components/sync/engine_impl/get_updates_delegate.cc
index 88b85fa89f7dbba7119f7099288c9f424a445625..117ce89486a7b62a7b5bdf5bfb81acd72590f092 100644
--- a/components/sync/engine_impl/get_updates_delegate.cc
+++ b/components/sync/engine_impl/get_updates_delegate.cc
@@ -15,7 +15,7 @@ namespace syncer {
namespace {
void NonPassiveApplyUpdates(ModelTypeSet gu_types,
- sessions::StatusController* status_controller,
+ StatusController* status_controller,
UpdateHandlerMap* update_handler_map) {
for (UpdateHandlerMap::iterator it = update_handler_map->begin();
it != update_handler_map->end(); ++it) {
@@ -25,7 +25,7 @@ void NonPassiveApplyUpdates(ModelTypeSet gu_types,
}
void PassiveApplyUpdates(ModelTypeSet gu_types,
- sessions::StatusController* status_controller,
+ StatusController* status_controller,
UpdateHandlerMap* update_handler_map) {
for (UpdateHandlerMap::iterator it = update_handler_map->begin();
it != update_handler_map->end(); ++it) {
@@ -41,7 +41,7 @@ GetUpdatesDelegate::GetUpdatesDelegate() {}
GetUpdatesDelegate::~GetUpdatesDelegate() {}
NormalGetUpdatesDelegate::NormalGetUpdatesDelegate(
- const sessions::NudgeTracker& nudge_tracker)
+ const NudgeTracker& nudge_tracker)
: nudge_tracker_(nudge_tracker) {}
NormalGetUpdatesDelegate::~NormalGetUpdatesDelegate() {}
@@ -80,7 +80,7 @@ void NormalGetUpdatesDelegate::HelpPopulateGuMessage(
void NormalGetUpdatesDelegate::ApplyUpdates(
ModelTypeSet gu_types,
- sessions::StatusController* status_controller,
+ StatusController* status_controller,
UpdateHandlerMap* update_handler_map) const {
NonPassiveApplyUpdates(gu_types, status_controller, update_handler_map);
}
@@ -106,7 +106,7 @@ void ConfigureGetUpdatesDelegate::HelpPopulateGuMessage(
void ConfigureGetUpdatesDelegate::ApplyUpdates(
ModelTypeSet gu_types,
- sessions::StatusController* status_controller,
+ StatusController* status_controller,
UpdateHandlerMap* update_handler_map) const {
PassiveApplyUpdates(gu_types, status_controller, update_handler_map);
}
@@ -156,7 +156,7 @@ void PollGetUpdatesDelegate::HelpPopulateGuMessage(
void PollGetUpdatesDelegate::ApplyUpdates(
ModelTypeSet gu_types,
- sessions::StatusController* status_controller,
+ StatusController* status_controller,
UpdateHandlerMap* update_handler_map) const {
NonPassiveApplyUpdates(gu_types, status_controller, update_handler_map);
}
« no previous file with comments | « components/sync/engine_impl/get_updates_delegate.h ('k') | components/sync/engine_impl/get_updates_processor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698