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

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

Issue 7655055: [Sync] Make BackendMigrator not wait for full sync cycles (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix mac test Created 9 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.h
diff --git a/chrome/browser/sync/glue/data_type_manager.h b/chrome/browser/sync/glue/data_type_manager.h
index 06c69e3a32dc887486a701bd8ffdca58d3618800..bbc0ba827693586f13e43215c3f20806a0a7435b 100644
--- a/chrome/browser/sync/glue/data_type_manager.h
+++ b/chrome/browser/sync/glue/data_type_manager.h
@@ -52,14 +52,17 @@ class DataTypeManager {
struct ConfigureResult {
ConfigureResult();
ConfigureResult(ConfigureStatus status,
- TypeSet requested_types);
+ TypeSet requested_types,
+ TypeSet unsynced_types);
ConfigureResult(ConfigureStatus status,
TypeSet requested_types,
+ TypeSet unsynced_types,
TypeSet failed_types,
const tracked_objects::Location& location);
~ConfigureResult();
ConfigureStatus status;
TypeSet requested_types;
+ TypeSet unsynced_types;
TypeSet failed_types;
tracked_objects::Location location;
};

Powered by Google App Engine
This is Rietveld 408576698