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

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

Issue 2002012: sync: Add location info to unrecoverable error. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Add error handler back to bookmark model associator Created 10 years, 6 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/preference_model_associator.h
===================================================================
--- chrome/browser/sync/glue/preference_model_associator.h (revision 48898)
+++ chrome/browser/sync/glue/preference_model_associator.h (working copy)
@@ -30,8 +30,7 @@
std::wstring> {
public:
static syncable::ModelType model_type() { return syncable::PREFERENCES; }
- PreferenceModelAssociator(ProfileSyncService* sync_service,
- UnrecoverableErrorHandler* error_handler);
+ PreferenceModelAssociator(ProfileSyncService* sync_service);
virtual ~PreferenceModelAssociator();
// Returns the list of preference names that should be monitored for
@@ -87,7 +86,6 @@
// |sync_id| with that node's id.
virtual bool GetSyncIdForTaggedNode(const std::string& tag, int64* sync_id);
- protected:
// Returns sync service instance.
ProfileSyncService* sync_service() { return sync_service_; }
@@ -96,7 +94,6 @@
typedef std::map<int64, std::wstring> SyncIdToPreferenceNameMap;
ProfileSyncService* sync_service_;
- UnrecoverableErrorHandler* error_handler_;
std::set<std::wstring> synced_preferences_;
int64 preferences_node_id_;

Powered by Google App Engine
This is Rietveld 408576698