diff options
author | ahernandez.miralles@gmail.com <ahernandez.miralles@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-24 02:58:27 +0000 |
---|---|---|
committer | ahernandez.miralles@gmail.com <ahernandez.miralles@gmail.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-06-24 02:58:27 +0000 |
commit | 6735152ee0cafaccafd85548f05b2d10c29d6b41 (patch) | |
tree | 287d2906a24dc370344596c422ddd334d2bdfab0 /extensions | |
parent | 16b200c7e4852f7699be0196e68de116af83949c (diff) | |
download | chromium_src-6735152ee0cafaccafd85548f05b2d10c29d6b41.zip chromium_src-6735152ee0cafaccafd85548f05b2d10c29d6b41.tar.gz chromium_src-6735152ee0cafaccafd85548f05b2d10c29d6b41.tar.bz2 |
Docserver: Separate models for apps and extensions.
BUG=322094
Review URL: https://codereview.chromium.org/344453003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@279278 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/common/api/runtime.json | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/common/api/runtime.json b/extensions/common/api/runtime.json index ccb63a5..3732c7e 100644 --- a/extensions/common/api/runtime.json +++ b/extensions/common/api/runtime.json @@ -35,7 +35,7 @@ "nocompile": true, "description": "An object containing information about the script context that sent a message or request.", "properties": { - "tab": {"$ref": "tabs.Tab", "optional": true, "description": "The $(ref:tabs.Tab) which opened the connection, if any. This property will <strong>only</strong> be present when the connection was opened from a tab (including content scripts), and <strong>only</strong> if the receiver is an extension, not an app."}, + "tab": {"$ref": "tabs.Tab", "optional": true, "description": "The $(ref:tabs.Tab) which opened the connection, if any. This property will <strong>only</strong> be present when the connection was opened from a tab (including content scripts), and <strong>only</strong> if the receiver is an extension, not an app.", "extension_types": ["extension", "legacy_packaged_app"]}, "id": {"type": "string", "optional": true, "description": "The ID of the extension or app that opened the connection, if any."}, "url": {"type": "string", "optional": true, "description": "The URL of the page or frame that opened the connection, if any. This property will <strong>only</strong> be present when the connection was opened from a tab or content script."}, "tlsChannelId": {"type": "string", "optional": true, "description": "The TLS channel ID of the web page that opened the connection, if requested by the extension or app, and if available."} |