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

Unified Diff: chrome/browser/sync/notifier/sync_notifier.h

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/sync_notifier.h
diff --git a/chrome/browser/sync/notifier/sync_notifier.h b/chrome/browser/sync/notifier/sync_notifier.h
index f20000a7ceab090bceddea646f428a3e5bba5d5f..a484dea917a5767ff2a6c9a52907fa7f434a6d68 100644
--- a/chrome/browser/sync/notifier/sync_notifier.h
+++ b/chrome/browser/sync/notifier/sync_notifier.h
@@ -40,14 +40,14 @@ class SyncNotifier {
const std::string& email, const std::string& token) = 0;
virtual void UpdateEnabledTypes(
- const syncable::ModelTypeSet& enabled_types) = 0;
+ syncable::ModelEnumSet enabled_types) = 0;
// This is here only to support the old p2p notification implementation,
// which is still used by sync integration tests.
// TODO(akalin): Remove this once we move the integration tests off p2p
// notifications.
virtual void SendNotification(
- const syncable::ModelTypeSet& changed_types) = 0;
+ syncable::ModelEnumSet changed_types) = 0;
};
} // namespace sync_notifier

Powered by Google App Engine
This is Rietveld 408576698