diff options
author | cduvall@chromium.org <cduvall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 07:33:11 +0000 |
---|---|---|
committer | cduvall@chromium.org <cduvall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-04-18 07:33:11 +0000 |
commit | 268125115bce8b824756c14735d28f846781680b (patch) | |
tree | f48731ef19db92117723bfc9ea3bbf9a78d86ecb /chrome/common/extensions/api/app.json | |
parent | be8b83b4a3c633ad037a7dcf7644b6146481a217 (diff) | |
download | chromium_src-268125115bce8b824756c14735d28f846781680b.zip chromium_src-268125115bce8b824756c14735d28f846781680b.tar.gz chromium_src-268125115bce8b824756c14735d28f846781680b.tar.bz2 |
Prevent chrome.app JSON schema from loading on every page
The app API along with app.window and app.runtime have been converted to use
the feature system. Bindings are not added to the chrome object for unavailable
APIs that are children of available APIs. For example, if chrome.app is
available, we will not add lazy bindings to chrome for app.window and
app.runtime. This eliminates the need to load the app schema, because we no
longer need to get chrome.app to add the app.runtime and app.window bindings.
BUG=55316
Review URL: https://chromiumcodereview.appspot.com/13604005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@194837 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/api/app.json')
-rw-r--r-- | chrome/common/extensions/api/app.json | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/chrome/common/extensions/api/app.json b/chrome/common/extensions/api/app.json index 0faef3c..7735f63 100644 --- a/chrome/common/extensions/api/app.json +++ b/chrome/common/extensions/api/app.json @@ -6,8 +6,6 @@ { "namespace": "app", "nodoc": true, - "unprivileged": true, - "matches": [ "<all_urls>" ], "types": [ { "id": "Details", |