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

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

Issue 8772074: [Sync] Convert syncable/ directory to ModelEnumSet (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo 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 5834cc7fb59f5bd7cc103fcb4aa6a9c955cb43c7..97bff3427404afd137a7eda590e8cec8757c6ad1 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(
- const syncable::ModelTypeSet& enabled_types) {
+ syncable::ModelEnumSet enabled_types) {
DCHECK(non_thread_safe_.CalledOnValidThread());
CHECK(!invalidation_client_id_.empty());
invalidation_client_.RegisterTypes(enabled_types);
}
void InvalidationNotifier::SendNotification(
- const syncable::ModelTypeSet& changed_types) {
+ syncable::ModelEnumSet changed_types) {
DCHECK(non_thread_safe_.CalledOnValidThread());
// Do nothing.
}

Powered by Google App Engine
This is Rietveld 408576698