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

Unified Diff: chrome/common/extensions/chrome_manifest_handlers.cc

Issue 22793018: <webview>: Implement support for package-local chrome-extension:// URLs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed comments Created 7 years, 3 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/common/extensions/chrome_manifest_handlers.cc
diff --git a/chrome/common/extensions/chrome_manifest_handlers.cc b/chrome/common/extensions/chrome_manifest_handlers.cc
index 07137d964d83f0d8197cff327998d22151e873bf..28dcd6db6156c5010ff55f63e36d362ebc2f8d04 100644
--- a/chrome/common/extensions/chrome_manifest_handlers.cc
+++ b/chrome/common/extensions/chrome_manifest_handlers.cc
@@ -43,6 +43,7 @@
#include "chrome/common/extensions/manifest_url_handler.h"
#include "chrome/common/extensions/mime_types_handler.h"
#include "chrome/common/extensions/web_accessible_resources_handler.h"
+#include "chrome/common/extensions/webview_accessible_resources_handler.h"
namespace extensions {
@@ -95,6 +96,7 @@ void RegisterChromeManifestHandlers() {
(new UrlHandlersParser)->Register();
(new URLOverridesHandler)->Register();
(new WebAccessibleResourcesHandler)->Register();
+ (new WebviewAccessibleResourcesHandler)->Register();
ManifestHandler::FinalizeRegistration();
#endif
}

Powered by Google App Engine
This is Rietveld 408576698