Index: chrome/browser/sync/profile_sync_service.h |
diff --git a/chrome/browser/sync/profile_sync_service.h b/chrome/browser/sync/profile_sync_service.h |
index 5b695fbf5e1c82ba958b9ce9a0da1a7034ce2b01..3341234ec3992acc6449d2b561eb58bd66cb185a 100644 |
--- a/chrome/browser/sync/profile_sync_service.h |
+++ b/chrome/browser/sync/profile_sync_service.h |
@@ -552,6 +552,13 @@ class ProfileSyncService : public ProfileSyncServiceBase, |
// Called when a datatype wishes to disable itself. Note, this does not change |
// preferred state of a datatype and is not persisted across restarts. |
virtual void DisableDatatype(syncer::ModelType type, |
Nicolas Zea
2014/07/14 17:36:02
Does it make more sense to just pass a syncer::Syn
stanisc
2014/07/15 16:10:00
OK. I've done that.
|
+ syncer::SyncError::ErrorType error_type, |
+ const tracked_objects::Location& from_here, |
+ std::string message); |
+ |
+ // Overloaded version of DisableDatatype that defaults to DATATYPE_ERROR |
+ // error type. |
+ void DisableDatatype(syncer::ModelType type, |
const tracked_objects::Location& from_here, |
Nicolas Zea
2014/07/14 17:36:02
nit: fix indent
stanisc
2014/07/15 16:10:00
Done.
|
std::string message); |