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

Unified Diff: chrome/browser/instant/instant_controller.h

Issue 12732005: Most visited thumbnails and favicons need id-based urls (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Adds proper handling of ThumbnailSource 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
Index: chrome/browser/instant/instant_controller.h
diff --git a/chrome/browser/instant/instant_controller.h b/chrome/browser/instant/instant_controller.h
index 64a9b06e1d89beb72545fb7780c70a6045b37366..0317a3b19faae0499c33ac30b71eb6d7e866b4bf 100644
--- a/chrome/browser/instant/instant_controller.h
+++ b/chrome/browser/instant/instant_controller.h
@@ -249,11 +249,11 @@ class InstantController : public InstantPage::Delegate,
// Invoked by the InstantLoader when the Instant page wants to delete a
// Most Visited item.
- virtual void DeleteMostVisitedItem(const GURL& url) OVERRIDE;
+ virtual void DeleteMostVisitedItem(uint64 restricted_id) OVERRIDE;
// Invoked by the InstantLoader when the Instant page wants to undo a
// Most Visited deletion.
- virtual void UndoMostVisitedDeletion(const GURL& url) OVERRIDE;
+ virtual void UndoMostVisitedDeletion(uint64 restricted_id) OVERRIDE;
// Invoked by the InstantLoader when the Instant page wants to undo all
// Most Visited deletions.
@@ -347,7 +347,7 @@ class InstantController : public InstantPage::Delegate,
// Sends a collection of MostVisitedItems to the renderer process via
// the appropriate InstantPage subclass.
- void SendMostVisitedItems(const std::vector<MostVisitedItem>& items);
+ void SendMostVisitedItems(const std::vector<InstantMostVisitedItem>& items);
chrome::BrowserInstantController* const browser_;
« no previous file with comments | « no previous file | chrome/browser/instant/instant_controller.cc » ('j') | chrome/browser/instant/instant_controller.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698