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

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

Issue 10387144: [Sync] - Implement isolated model association. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: For submitting. Created 8 years, 7 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
« no previous file with comments | « chrome/browser/sync/glue/data_type_manager.h ('k') | chrome/browser/sync/glue/data_type_manager_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 ae624148e4f8d2595d535dbbd8cef6ad48423e0e..ff9c286d93b7b1dd002d99b29d78fd4b3ad21498 100644
--- a/chrome/browser/sync/glue/data_type_manager.cc
+++ b/chrome/browser/sync/glue/data_type_manager.cc
@@ -19,11 +19,13 @@ DataTypeManager::ConfigureResult::ConfigureResult(ConfigureStatus status,
DataTypeManager::ConfigureResult::ConfigureResult(
ConfigureStatus status,
TypeSet requested_types,
- const std::list<SyncError>& error)
+ const std::list<SyncError>& failed_data_types,
+ syncable::ModelTypeSet waiting_to_start)
: status(status),
requested_types(requested_types),
- errors(error) {
- if (!error.empty()) {
+ failed_data_types(failed_data_types),
+ waiting_to_start(waiting_to_start) {
+ if (!failed_data_types.empty()) {
DCHECK_NE(OK, status);
}
}
« no previous file with comments | « chrome/browser/sync/glue/data_type_manager.h ('k') | chrome/browser/sync/glue/data_type_manager_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698