summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/unrecoverable_error_handler.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/sync/unrecoverable_error_handler.h')
-rw-r--r--chrome/browser/sync/unrecoverable_error_handler.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/chrome/browser/sync/unrecoverable_error_handler.h b/chrome/browser/sync/unrecoverable_error_handler.h
index 2bad8c5..d8950e6 100644
--- a/chrome/browser/sync/unrecoverable_error_handler.h
+++ b/chrome/browser/sync/unrecoverable_error_handler.h
@@ -5,6 +5,10 @@
#ifndef CHROME_BROWSER_SYNC_UNRECOVERABLE_ERROR_HANDLER_H_
#define CHROME_BROWSER_SYNC_UNRECOVERABLE_ERROR_HANDLER_H_
+#include <string>
+
+#include "base/tracked.h"
+
namespace browser_sync {
class UnrecoverableErrorHandler {
@@ -13,7 +17,8 @@ class UnrecoverableErrorHandler {
// syncer model are inconsistent, or similar. The ProfileSyncService will
// try to avoid doing any work to avoid crashing or corrupting things
// further, and will report an error status if queried.
- virtual void OnUnrecoverableError() = 0;
+ virtual void OnUnrecoverableError(const tracked_objects::Location& from_here,
+ const std::string& message) = 0;
protected:
virtual ~UnrecoverableErrorHandler() { }
};