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

Unified Diff: chrome/browser/sync/notifier/invalidation_notifier.cc

Issue 8919021: [Sync] Rename ModelEnumSet to ModelTypeSet (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years 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/notifier/invalidation_notifier.cc
diff --git a/chrome/browser/sync/notifier/invalidation_notifier.cc b/chrome/browser/sync/notifier/invalidation_notifier.cc
index 97bff3427404afd137a7eda590e8cec8757c6ad1..9a69048dd27bf245262ecb285689a837e9c8a9b8 100644
--- a/chrome/browser/sync/notifier/invalidation_notifier.cc
+++ b/chrome/browser/sync/notifier/invalidation_notifier.cc
@@ -92,14 +92,14 @@ void InvalidationNotifier::UpdateCredentials(
}
void InvalidationNotifier::UpdateEnabledTypes(
- syncable::ModelEnumSet enabled_types) {
+ syncable::ModelTypeSet enabled_types) {
DCHECK(non_thread_safe_.CalledOnValidThread());
CHECK(!invalidation_client_id_.empty());
invalidation_client_.RegisterTypes(enabled_types);
}
void InvalidationNotifier::SendNotification(
- syncable::ModelEnumSet changed_types) {
+ syncable::ModelTypeSet changed_types) {
DCHECK(non_thread_safe_.CalledOnValidThread());
// Do nothing.
}

Powered by Google App Engine
This is Rietveld 408576698