Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5114)

Unified Diff: chrome/renderer/resources/extensions/searchbox_api.js

Issue 12732005: Most visited thumbnails and favicons need id-based urls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address estade's comments. Created 7 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/searchbox/searchbox.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 466299e06a95bb64a086511344158ba58fa9f162..24b2bc142cb9320382c8276949655c9a25b22921 100644
--- a/chrome/renderer/resources/extensions/searchbox_api.js
+++ b/chrome/renderer/resources/extensions/searchbox_api.js
@@ -330,14 +330,14 @@ if (!chrome.embeddedSearch) {
this.__defineGetter__('mostVisited', GetMostVisitedItemsWrapper);
this.__defineGetter__('themeBackgroundInfo', GetThemeBackgroundInfo);
- this.deleteMostVisitedItem = function(restrictId) {
- DeleteMostVisitedItem(restrictId);
+ this.deleteMostVisitedItem = function(restrictedId) {
+ DeleteMostVisitedItem(restrictedId);
};
this.undoAllMostVisitedDeletions = function() {
UndoAllMostVisitedDeletions();
};
- this.undoMostVisitedDeletion = function(restrictId) {
- UndoMostVisitedDeletion(restrictId);
+ this.undoMostVisitedDeletion = function(restrictedId) {
+ UndoMostVisitedDeletion(restrictedId);
};
this.navigateContentWindow = function(destination, disposition) {
NavigateNewTabPage(destination, disposition);
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/searchbox/searchbox.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698