Chromium Code Reviews| Index: chrome/renderer/resources/extension_process_bindings.js |
| =================================================================== |
| --- chrome/renderer/resources/extension_process_bindings.js (revision 19487) |
| +++ chrome/renderer/resources/extension_process_bindings.js (working copy) |
| @@ -503,10 +503,11 @@ |
| // bookmark events |
| - // Sends (id, {title, url, parentId, index}) |
| + // Sends (id, {title, url, parentId, index, dateAdded, dateGroupModified}) |
|
Matt Perry
2009/06/29 21:28:07
btw, the convention for optional is [foo] - see [c
Erik does not do reviews
2009/06/29 21:30:00
normally, I'd agree, but in this case, [] indicate
Matt Perry
2009/06/29 21:30:50
oh right.. that's unfortunate :(
|
| + // date values are milliseconds since the UTC epoch. |
| chrome.bookmarks.onAdded = new chrome.Event("bookmark-added"); |
| - // Sends ({parentId, index}) |
| + // Sends (id, {parentId, index}) |
| chrome.bookmarks.onRemoved = new chrome.Event("bookmark-removed"); |
| // Sends (id, object) where object has list of properties that have changed. |