diff options
author | erikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-08 15:49:52 +0000 |
---|---|---|
committer | erikkay@chromium.org <erikkay@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-08 15:49:52 +0000 |
commit | 173bf063a54257fcfa4cac7576d2822950d7af31 (patch) | |
tree | a3944c884bcdc1414d286332d90f75c5a66e1cac /chrome/common | |
parent | c3eb7e8c5d61bff19ea58294aeeedb93e0988503 (diff) | |
download | chromium_src-173bf063a54257fcfa4cac7576d2822950d7af31.zip chromium_src-173bf063a54257fcfa4cac7576d2822950d7af31.tar.gz chromium_src-173bf063a54257fcfa4cac7576d2822950d7af31.tar.bz2 |
finished testing functions and added events to bookmark tests.
added infrastructure to better support events and cleaned up callback testing.
Review URL: http://codereview.chromium.org/192028
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@25623 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rwxr-xr-x | chrome/common/extensions/api/extension_api.json | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/extensions/api/extension_api.json b/chrome/common/extensions/api/extension_api.json index 28da984..91ceeba4 100755 --- a/chrome/common/extensions/api/extension_api.json +++ b/chrome/common/extensions/api/extension_api.json @@ -916,7 +916,7 @@ { "name": "onRemoved", "type": "function", - "description": "Fired when a bookmark or folder is removed.", + "description": "Fired when a bookmark or folder is removed. When a folder is removed recursively, a single notification is fired for the folder, and none for its contents.", "parameters": [ {"type": "string", "name": "id"}, { @@ -965,7 +965,7 @@ { "name": "onChildrenReordered", "type": "function", - "description": "Fired when the children of a folder have changed their order.", + "description": "Fired when the children of a folder have changed their order due to the order being sorted in the UI. This is not called as a result of a move().", "parameters": [ {"type": "string", "name": "id"}, { |