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

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

Issue 10834351: [sync] Divorce DataTypeManager from NotificationService notifications by creating a new DataTypeMa… (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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: chrome/browser/sync/glue/data_type_manager.cc
diff --git a/chrome/browser/sync/glue/data_type_manager.cc b/chrome/browser/sync/glue/data_type_manager.cc
index 28310dce5c5745ce69af2b42ca8c33b3cedcba79..a0908b8cf4d955394181ac43fb62b01b56c07aa6 100644
--- a/chrome/browser/sync/glue/data_type_manager.cc
+++ b/chrome/browser/sync/glue/data_type_manager.cc
@@ -7,7 +7,12 @@
namespace browser_sync {
DataTypeManager::ConfigureResult::ConfigureResult()
- : status(UNKNOWN) {}
+ : status(UNKNOWN) {
+}
+
+DataTypeManager::ConfigureResult::ConfigureResult(ConfigureStatus status)
+ : status(status) {
+}
DataTypeManager::ConfigureResult::ConfigureResult(ConfigureStatus status,
TypeSet requested_types)

Powered by Google App Engine
This is Rietveld 408576698