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

Unified Diff: chrome/browser/ui/webui/extensions/extension_loader_handler.h

Issue 342003005: Show alert failure for reloading unpacked extensions with bad manifest (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Moved path handling back to C++ Created 6 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/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..bffec3e4a110999a9ccb53f29f4fca18cf185375 100644
--- a/chrome/browser/ui/webui/extensions/extension_loader_handler.h
+++ b/chrome/browser/ui/webui/extensions/extension_loader_handler.h
@@ -6,12 +6,16 @@
#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"
#include "base/memory/weak_ptr.h"
+#include "base/scoped_observer.h"
+#include "chrome/browser/extensions/extension_error_reporter.h"
#include "content/public/browser/web_ui_message_handler.h"
namespace base {
@@ -29,7 +33,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();
@@ -42,6 +47,7 @@ class ExtensionLoaderHandler : public content::WebUIMessageHandler {
private:
class FileHelper;
+ struct FailureData;
// Handle the 'extensionLoaderLoadUnpacked' message.
void HandleLoadUnpacked(const base::ListValue* args);
@@ -49,11 +55,21 @@ class ExtensionLoaderHandler : public content::WebUIMessageHandler {
// Handle the 'extensionLoaderRetry' message.
void HandleRetry(const base::ListValue* args);
+ // Handle the 'extensionLoaderGiveUp' message.
+ void HandleGiveUp(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;
// 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
@@ -69,9 +85,17 @@ 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.
+ ScopedVector<FailureData> failures_;
+
+ // Holds failed paths for load retries.
+ std::vector<base::FilePath> failed_paths_;
+
+ ScopedObserver<ExtensionErrorReporter, ExtensionErrorReporter::Observer>
+ extension_error_reporter_observer_;
+
+ bool display_ready_;
Devlin 2014/07/02 17:46:50 nit: even though it's pretty obvious, put a commen
gpdavis 2014/07/02 19:13:55 Done.
// Weak pointer factory for posting background tasks.
base::WeakPtrFactory<ExtensionLoaderHandler> weak_ptr_factory_;

Powered by Google App Engine
This is Rietveld 408576698