Index: chrome/browser/sync/glue/autofill_data_type_controller.h |
=================================================================== |
--- chrome/browser/sync/glue/autofill_data_type_controller.h (revision 48898) |
+++ chrome/browser/sync/glue/autofill_data_type_controller.h (working copy) |
@@ -5,6 +5,8 @@ |
#ifndef CHROME_BROWSER_SYNC_GLUE_AUTOFILL_DATA_TYPE_CONTROLLER_H__ |
#define CHROME_BROWSER_SYNC_GLUE_AUTOFILL_DATA_TYPE_CONTROLLER_H__ |
+#include <string> |
+ |
#include "base/basictypes.h" |
#include "base/scoped_ptr.h" |
#include "base/waitable_event.h" |
@@ -60,7 +62,8 @@ |
} |
// UnrecoverableHandler implementation |
- virtual void OnUnrecoverableError(); |
+ virtual void OnUnrecoverableError(const tracked_objects::Location& from_here, |
+ const std::string& message); |
// NotificationObserver implementation. |
virtual void Observe(NotificationType type, |
@@ -76,7 +79,8 @@ |
void StartDoneImpl(StartResult result, State state); |
void StopImpl(); |
void StartFailed(StartResult result); |
- void OnUnrecoverableErrorImpl(); |
+ void OnUnrecoverableErrorImpl(const tracked_objects::Location& from_here, |
+ const std::string& message); |
// Second-half of "Start" implementation, called once personal data has |
// loaded. |