summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions/api
diff options
context:
space:
mode:
authorskerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-28 15:08:35 +0000
committerskerner@chromium.org <skerner@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-10-28 15:08:35 +0000
commitea8fe5771ba099a83192fb6355e70ff72829ac9e (patch)
treeffa40ac452731a0011c76bbbfa035211ad4a3c32 /chrome/common/extensions/api
parent7ef68bcbd3e32f1001e29b09710f6d1a71119e96 (diff)
downloadchromium_src-ea8fe5771ba099a83192fb6355e70ff72829ac9e.zip
chromium_src-ea8fe5771ba099a83192fb6355e70ff72829ac9e.tar.gz
chromium_src-ea8fe5771ba099a83192fb6355e70ff72829ac9e.tar.bz2
Issue 21729: Add new event chrome.tabs.onStatusChange .
BUG=21729 TEST= Manually tested that onUpdated sends all tab info. Updated unit tests. Review URL: http://codereview.chromium.org/289006 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30341 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions/api')
-rwxr-xr-xchrome/common/extensions/api/extension_api.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index fa1b1f9..86e42d6 100755
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -729,6 +729,7 @@
{
"type": "object",
"name": "changeInfo",
+ "description": "Lists the changes to the state of the tab that was updated.",
"properties": {
"status": {
"type": "string",
@@ -740,6 +741,11 @@
"description": "Only specified if the tab's URL changed."
}
}
+ },
+ {
+ "$ref": "Tab",
+ "name": "tab",
+ "description": "Gives the state of the tab that was updated."
}
]
},