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

Unified Diff: chrome/browser/extensions/extension_web_ui.cc

Issue 2452773002: [Extensions] Limit Extension WebUI (Closed)
Patch Set: sky's Created 4 years, 1 month 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/extensions/extension_web_ui.cc
diff --git a/chrome/browser/extensions/extension_web_ui.cc b/chrome/browser/extensions/extension_web_ui.cc
index 024282ec85ba4d3bfad8881a86543d9e9cd08b31..d472a5ea43f28d377ab024732ae9e5b33281f2a8 100644
--- a/chrome/browser/extensions/extension_web_ui.cc
+++ b/chrome/browser/extensions/extension_web_ui.cc
@@ -333,12 +333,12 @@ const char ExtensionWebUI::kExtensionURLOverrides[] =
"extensions.chrome_url_overrides";
ExtensionWebUI::ExtensionWebUI(content::WebUI* web_ui, const GURL& url)
- : WebUIController(web_ui),
- url_(url) {
+ : WebUIController(web_ui) {
Profile* profile = Profile::FromWebUI(web_ui);
const Extension* extension = extensions::ExtensionRegistry::Get(
profile)->enabled_extensions().GetExtensionOrAppByURL(url);
DCHECK(extension);
+ DCHECK_EQ(extension_misc::kBookmarkManagerId, extension->id());
// The base class defaults to enabling WebUI bindings, but we don't need
// those (this is also reflected in ChromeWebUIControllerFactory::
@@ -347,20 +347,26 @@ ExtensionWebUI::ExtensionWebUI(content::WebUI* web_ui, const GURL& url)
web_ui->SetBindings(bindings);
// Hack: A few things we specialize just for the bookmark manager.
- if (extension->id() == extension_misc::kBookmarkManagerId) {
- bookmark_manager_private_drag_event_router_.reset(
- new extensions::BookmarkManagerPrivateDragEventRouter(
- profile, web_ui->GetWebContents()));
+ bookmark_manager_private_drag_event_router_.reset(
+ new extensions::BookmarkManagerPrivateDragEventRouter(
+ profile, web_ui->GetWebContents()));
- web_ui->SetLinkTransitionType(ui::PAGE_TRANSITION_AUTO_BOOKMARK);
- }
+ web_ui->SetLinkTransitionType(ui::PAGE_TRANSITION_AUTO_BOOKMARK);
}
ExtensionWebUI::~ExtensionWebUI() {}
-extensions::BookmarkManagerPrivateDragEventRouter*
-ExtensionWebUI::bookmark_manager_private_drag_event_router() {
- return bookmark_manager_private_drag_event_router_.get();
+// static
+bool ExtensionWebUI::NeedsExtensionWebUI(
+ content::BrowserContext* browser_context,
+ const GURL& url) {
+ CHECK(browser_context);
+ const Extension* extension =
+ extensions::ExtensionRegistry::Get(browser_context)->enabled_extensions().
+ GetExtensionOrAppByURL(url);
+ // Only use bindings for the Bookmark Manager extension, which needs it as a
+ // hack (see ExtensionWebUI's constructor below).
+ return extension && extension->id() == extension_misc::kBookmarkManagerId;
}
////////////////////////////////////////////////////////////////////////////////
« no previous file with comments | « chrome/browser/extensions/extension_web_ui.h ('k') | chrome/browser/ui/views/bookmarks/bookmark_context_menu_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698