Index: chrome/browser/ui/webui/extensions/extension_loader_handler.h |
diff --git a/chrome/browser/ui/webui/extensions/extension_loader_handler.h b/chrome/browser/ui/webui/extensions/extension_loader_handler.h |
index 5d0351f97a0bfb200b2b64473ed49437a482393f..e3357207dfffd558882838a7f63f3597f941a2f6 100644 |
--- a/chrome/browser/ui/webui/extensions/extension_loader_handler.h |
+++ b/chrome/browser/ui/webui/extensions/extension_loader_handler.h |
@@ -6,12 +6,17 @@ |
#define CHROME_BROWSER_UI_WEBUI_EXTENSIONS_EXTENSION_LOADER_HANDLER_H_ |
#include <string> |
+#include <vector> |
#include "base/compiler_specific.h" |
#include "base/files/file_path.h" |
#include "base/macros.h" |
#include "base/memory/scoped_ptr.h" |
+#include "base/memory/scoped_vector.h" |
Devlin
2014/07/07 20:44:22
Don't need this, right?
gpdavis
2014/07/09 01:35:57
Done.
|
#include "base/memory/weak_ptr.h" |
+#include "base/scoped_observer.h" |
+#include "base/values.h" |
+#include "chrome/browser/extensions/extension_error_reporter.h" |
#include "content/public/browser/web_ui_message_handler.h" |
namespace base { |
@@ -29,7 +34,8 @@ namespace extensions { |
class Extension; |
// The handler page for the Extension Commands UI overlay. |
-class ExtensionLoaderHandler : public content::WebUIMessageHandler { |
+class ExtensionLoaderHandler : public content::WebUIMessageHandler, |
+ public ExtensionErrorReporter::Observer { |
public: |
explicit ExtensionLoaderHandler(Profile* profile); |
virtual ~ExtensionLoaderHandler(); |
@@ -49,19 +55,32 @@ class ExtensionLoaderHandler : public content::WebUIMessageHandler { |
// Handle the 'extensionLoaderRetry' message. |
void HandleRetry(const base::ListValue* args); |
+ // Handle the 'extensionLoaderIgnoreFailure' message. |
+ void HandleIgnoreFailure(const base::ListValue* args); |
+ |
+ // Handle the 'extensionLoaderSetDisplayLoading' message. |
+ void HandleSetDisplayLoading(const base::ListValue* args); |
+ |
+ // Handle the 'extensionLoaderDisplayFailures' message. |
+ void HandleDisplayFailures(const base::ListValue* args); |
+ |
// Try to load an unpacked extension from the given |file_path|. |
void LoadUnpackedExtensionImpl(const base::FilePath& file_path); |
- // Called when an unpacked extension fails to load. |
- void OnLoadFailure(const base::FilePath& file_path, const std::string& error); |
+ // ExtensionErrorReporter::Observer implementation. |
+ virtual void OnLoadFailure(const base::FilePath& file_path, |
+ const std::string& error) OVERRIDE; |
+ |
+ // Add a failure to failures_. If it was a manifest error, |manifest| will |
+ // hold the manifest contents, and |line_number| will point to the line at |
+ // which the error was found. |
+ void AddFailure(const base::FilePath& file_path, |
+ const std::string& error, |
+ size_t line_number, |
+ const std::string& manifest); |
- // Notify the frontend of the failure. If it was a manifest error, |manifest| |
- // will hold the manifest contents, and |line_number| will point to the line |
- // at which the error was found. |
- void NotifyFrontendOfFailure(const base::FilePath& file_path, |
- const std::string& error, |
- size_t line_number, |
- const std::string& manifest); |
+ // Notify the frontend of all failures. |
+ void NotifyFrontendOfFailure(); |
// The profile with which this Handler is associated. |
Profile* profile_; |
@@ -69,9 +88,19 @@ class ExtensionLoaderHandler : public content::WebUIMessageHandler { |
// A helper to manage file picking. |
scoped_ptr<FileHelper> file_helper_; |
- // The file path to the extension that failed to load, or empty. This is |
- // loaded when the user selects "retry". |
- base::FilePath failed_path_; |
+ // Holds information about all unpacked extension install failures that |
+ // were reported while the extensions page was loading. |
+ base::ListValue failures_; |
+ |
+ // Holds failed paths for load retries. |
+ std::vector<base::FilePath> failed_paths_; |
+ |
+ ScopedObserver<ExtensionErrorReporter, ExtensionErrorReporter::Observer> |
+ extension_error_reporter_observer_; |
+ |
+ // Set when the chrome://extensions page is fully loaded and the load |
+ // failures UI is ready to receive failures. |
+ bool display_ready_; |
// Weak pointer factory for posting background tasks. |
base::WeakPtrFactory<ExtensionLoaderHandler> weak_ptr_factory_; |