diff options
author | rafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-28 16:20:47 +0000 |
---|---|---|
committer | rafaelw@chromium.org <rafaelw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-08-28 16:20:47 +0000 |
commit | b84ae679f054d846372e8e8ded5c31e8e9dc2ec8 (patch) | |
tree | 685b40227a5d08e327d2c558bc1f65ba61f640df /chrome/common/render_messages_params.h | |
parent | 899c3e93acbd41bcd3c5ce5d09eddef8f45ab3ff (diff) | |
download | chromium_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/common/render_messages_params.h')
-rw-r--r-- | chrome/common/render_messages_params.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/render_messages_params.h b/chrome/common/render_messages_params.h index 141e7f9..5666ae1 100644 --- a/chrome/common/render_messages_params.h +++ b/chrome/common/render_messages_params.h @@ -16,6 +16,7 @@ #include "base/time.h" #include "base/values.h" #include "chrome/common/dom_storage_common.h" +#include "chrome/common/extensions/extension.h" #include "chrome/common/extensions/extension_extent.h" #include "chrome/common/extensions/url_pattern.h" #include "chrome/common/indexed_db_key.h" @@ -790,6 +791,7 @@ struct ViewMsg_ExtensionRendererInfo { ExtensionExtent web_extent; std::string name; GURL icon_url; + Extension::Location location; }; struct ViewMsg_ExtensionsUpdated_Params { |