| Index: chrome/test/data/extensions/uitest/event_sink/test.html
|
| diff --git a/chrome/test/data/extensions/uitest/event_sink/test.html b/chrome/test/data/extensions/uitest/event_sink/test.html
|
| index 546224369df55eabad5caf8277bdb8dcf54c554d..284d8c5ba5f6b3dac2f2d7e33facb51e5f68e7ea 100644
|
| --- a/chrome/test/data/extensions/uitest/event_sink/test.html
|
| +++ b/chrome/test/data/extensions/uitest/event_sink/test.html
|
| @@ -15,7 +15,7 @@ HOLA!!! If you dont see the message DONE, then there is an error in the script.
|
| });
|
|
|
| // Window events.
|
| - chrome.windows.onCreated.addListener(function(windowId) {
|
| + chrome.windows.onCreated.addListener(function(createInfo) {
|
| portToAutomation.postMessage(chrome.windows.onCreated.eventName_);
|
| });
|
| chrome.windows.onRemoved.addListener(function(windowId) {
|
| @@ -49,8 +49,8 @@ HOLA!!! If you dont see the message DONE, then there is an error in the script.
|
| });
|
|
|
| // Bookmark events.
|
| - chrome.bookmarks.onAdded.addListener(function(info) {
|
| - portToAutomation.postMessage(chrome.bookmarks.onAdded.eventName_);
|
| + chrome.bookmarks.onCreated.addListener(function(info) {
|
| + portToAutomation.postMessage(chrome.bookmarks.onCreated.eventName_);
|
| });
|
| chrome.bookmarks.onRemoved.addListener(function(info) {
|
| portToAutomation.postMessage(chrome.bookmarks.onRemoved.eventName_);
|
| @@ -62,7 +62,7 @@ HOLA!!! If you dont see the message DONE, then there is an error in the script.
|
| portToAutomation.postMessage(chrome.bookmarks.onMoved.eventName_);
|
| });
|
| chrome.bookmarks.onChildrenReordered.addListener(function(bookmarkId,
|
| - children) {
|
| + reorderInfo) {
|
| portToAutomation.postMessage(
|
| chrome.bookmarks.onChildrenReordered.eventName_);
|
| });
|
|
|