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

Unified Diff: chrome/browser/sync/glue/bridged_sync_notifier.cc

Issue 10696087: [Sync] Move ModelType and related classes to 'syncer' namespace (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sort headers, update copyrights Created 8 years, 6 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: chrome/browser/sync/glue/bridged_sync_notifier.cc
diff --git a/chrome/browser/sync/glue/bridged_sync_notifier.cc b/chrome/browser/sync/glue/bridged_sync_notifier.cc
index 61a7c90010988cafa892aa2a60114011328af24e..a9de0577de66a24b7cdadec89b28bd87952e21db 100644
--- a/chrome/browser/sync/glue/bridged_sync_notifier.cc
+++ b/chrome/browser/sync/glue/bridged_sync_notifier.cc
@@ -49,13 +49,13 @@ void BridgedSyncNotifier::UpdateCredentials(
}
void BridgedSyncNotifier::UpdateEnabledTypes(
- syncable::ModelTypeSet enabled_types) {
+ syncer::ModelTypeSet enabled_types) {
if (delegate_.get())
delegate_->UpdateEnabledTypes(enabled_types);
}
void BridgedSyncNotifier::SendNotification(
- syncable::ModelTypeSet changed_types) {
+ syncer::ModelTypeSet changed_types) {
if (delegate_.get())
delegate_->SendNotification(changed_types);
}
« no previous file with comments | « chrome/browser/sync/glue/bridged_sync_notifier.h ('k') | chrome/browser/sync/glue/bridged_sync_notifier_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698