summaryrefslogtreecommitdiffstats
path: root/chrome/browser/dom_ui/dom_ui_factory.h
diff options
context:
space:
mode:
authorrafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-28 16:20:47 +0000
committerrafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-28 16:20:47 +0000
commitb84ae679f054d846372e8e8ded5c31e8e9dc2ec8 (patch)
tree685b40227a5d08e327d2c558bc1f65ba61f640df /chrome/browser/dom_ui/dom_ui_factory.h
parent899c3e93acbd41bcd3c5ce5d09eddef8f45ab3ff (diff)
downloadchromium_src-b84ae679f054d846372e8e8ded5c31e8e9dc2ec8.zip
chromium_src-b84ae679f054d846372e8e8ded5c31e8e9dc2ec8.tar.gz
chromium_src-b84ae679f054d846372e8e8ded5c31e8e9dc2ec8.tar.bz2
Expose Extension Bindings to Component Applications
This patch allows component (built-in) extension apps to have extension api bindings. Note that this patch adds browser-side api permission checking for extension requests. This is step two along the path to exposing an extension management api to the gallery (webstore). BUG=27431 Review URL: http://codereview.chromium.org/3163044 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57788 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/dom_ui/dom_ui_factory.h')
-rw-r--r--chrome/browser/dom_ui/dom_ui_factory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/browser/dom_ui/dom_ui_factory.h b/chrome/browser/dom_ui/dom_ui_factory.h
index ba8dabe..3a7bfc6 100644
--- a/chrome/browser/dom_ui/dom_ui_factory.h
+++ b/chrome/browser/dom_ui/dom_ui_factory.h
@@ -27,7 +27,7 @@ class DOMUIFactory {
// Returns a type identifier indicating what DOMUI we would use for the
// given URL. This is useful for comparing the potential DOMUIs for two URLs.
// Returns kNoDOMUI if the given URL will not use the DOM UI system.
- static DOMUITypeID GetDOMUIType(const GURL& url);
+ static DOMUITypeID GetDOMUIType(Profile* profile, const GURL& url);
// Returns true if the given URL's scheme would trigger the DOM UI system.
// This is a less precise test than UseDONUIForURL, which tells you whether
@@ -36,7 +36,7 @@ class DOMUIFactory {
static bool HasDOMUIScheme(const GURL& url);
// Returns true if the given URL will use the DOM UI system.
- static bool UseDOMUIForURL(const GURL& url);
+ static bool UseDOMUIForURL(Profile* profile, const GURL& url);
// Allocates a new DOMUI object for the given URL, and returns it. If the URL
// is not a DOM UI URL, then it will return NULL. When non-NULL, ownership of