summaryrefslogtreecommitdiffstats
path: root/chrome/common/extensions
diff options
context:
space:
mode:
authorarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-16 20:33:01 +0000
committerarv@chromium.org <arv@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-03-16 20:33:01 +0000
commitbff894af676ffdcfce8a2b9a2ecfc3006b41d014 (patch)
treeaa9fcad6f667c7061470b0d7e7fc301b4def0259 /chrome/common/extensions
parent9f816f720d145872fa7ad141bfe63ea090f3840f (diff)
downloadchromium_src-bff894af676ffdcfce8a2b9a2ecfc3006b41d014.zip
chromium_src-bff894af676ffdcfce8a2b9a2ecfc3006b41d014.tar.gz
chromium_src-bff894af676ffdcfce8a2b9a2ecfc3006b41d014.tar.bz2
Fix an issue where the schema for the callback parameters to onInportBegan and onImportEnded was invalid.
BUG=None TEST=Import or export from the bookmark manager and notice that you no longer ger an exception Review URL: http://codereview.chromium.org/896002 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@41756 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/extensions')
-rwxr-xr-xchrome/common/extensions/api/extension_api.json11
1 files changed, 3 insertions, 8 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json
index a65aac8..c53700d 100755
--- a/chrome/common/extensions/api/extension_api.json
+++ b/chrome/common/extensions/api/extension_api.json
@@ -1142,8 +1142,7 @@
]
}
],
- "events": [
- ]
+ "events": []
},
{
"namespace": "pageAction",
@@ -2215,17 +2214,13 @@
"name": "onImportBegan",
"type": "function",
"description": "Fired when a bookmark import session is begun. Expensive observers should ignore handleCreated updates until onImportEnded is fired. Observers should still handle other notifications immediately.",
- "parameters": [
- {}
- ]
+ "parameters": []
},
{
"name": "onImportEnded",
"type": "function",
"description": "Fired when a bookmark import session is ended.",
- "parameters": [
- {}
- ]
+ "parameters": []
},
{
"name": "onDragEnter",