| Index: chrome/renderer/resources/extensions/searchbox_api.js
|
| diff --git a/chrome/renderer/resources/extensions/searchbox_api.js b/chrome/renderer/resources/extensions/searchbox_api.js
|
| index 36f23dace515f7fe6ec94164c0fb8321f88fdf69..899016f0e6ea1695571f262b77c21062faa209c7 100644
|
| --- a/chrome/renderer/resources/extensions/searchbox_api.js
|
| +++ b/chrome/renderer/resources/extensions/searchbox_api.js
|
| @@ -125,14 +125,14 @@ if (!chrome.embeddedSearch) {
|
|
|
| // This method is restricted to chrome-search://most-visited pages by
|
| // checking the invoking context's origin in searchbox_extension.cc.
|
| - this.logMostVisitedImpression = function(position, provider) {
|
| - LogMostVisitedImpression(position, provider);
|
| + this.logMostVisitedImpression = function(position, tileSource, tileType) {
|
| + LogMostVisitedImpression(position, tileSource, tileType);
|
| };
|
|
|
| // This method is restricted to chrome-search://most-visited pages by
|
| // checking the invoking context's origin in searchbox_extension.cc.
|
| - this.logMostVisitedNavigation = function(position, provider) {
|
| - LogMostVisitedNavigation(position, provider);
|
| + this.logMostVisitedNavigation = function(position, tileSource, tileType) {
|
| + LogMostVisitedNavigation(position, tileSource, tileType);
|
| };
|
|
|
| this.undoAllMostVisitedDeletions = function() {
|
|
|