Index: chrome/browser/extensions/extension_error_reporter_observer.h |
diff --git a/chrome/browser/extensions/extension_error_reporter_observer.h b/chrome/browser/extensions/extension_error_reporter_observer.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..75b60772e11ef02a9c04fad7411efaf7294a33f3 |
--- /dev/null |
+++ b/chrome/browser/extensions/extension_error_reporter_observer.h |
@@ -0,0 +1,24 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSIONS_ERROR_REPORTER_OBSERVER_H_ |
+#define CHROME_BROWSER_EXTENSIONS_EXTENSIONS_ERROR_REPORTER_OBSERVER_H_ |
+ |
+#include "extensions/common/extension.h" |
+ |
+// namespace extensions { |
+ |
+class Extension; |
+ |
+class ExtensionErrorReporterObserver { |
+ public: |
+ virtual ~ExtensionErrorReporterObserver() {} |
+ |
+ virtual void OnLoadFailure(const base::FilePath& extension_path, |
+ const std::string& error) {}; |
+}; |
+ |
+//} // namespace extensions |
+ |
+#endif // CHROME_BROWSER_EXTENSIONS_EXTENSIONS_ERROR_REPORTER_OBSERVER_H_ |