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

Unified Diff: chrome/browser/ui/search/instant_controller.h

Issue 12498002: InstantExtended: Adding InstantRestrictedIDCache. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixing android compile error. 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/browser/search/instant_service.cc ('k') | chrome/browser/ui/search/instant_controller.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/search/instant_controller.h
diff --git a/chrome/browser/ui/search/instant_controller.h b/chrome/browser/ui/search/instant_controller.h
index 4c5ceb5d7fe9e1b85de21690a4a849d3f388c961..b10331b461205f36ec42ea98358526a06e32d125 100644
--- a/chrome/browser/ui/search/instant_controller.h
+++ b/chrome/browser/ui/search/instant_controller.h
@@ -256,11 +256,13 @@ class InstantController : public InstantPage::Delegate,
// Invoked by the InstantLoader when the Instant page wants to delete a
// Most Visited item.
- virtual void DeleteMostVisitedItem(uint64 most_visited_item_id) OVERRIDE;
+ virtual void DeleteMostVisitedItem(InstantRestrictedID most_visited_item_id)
+ OVERRIDE;
// Invoked by the InstantLoader when the Instant page wants to undo a
// Most Visited deletion.
- virtual void UndoMostVisitedDeletion(uint64 most_visited_item_id) OVERRIDE;
+ virtual void UndoMostVisitedDeletion(InstantRestrictedID most_visited_item_id)
+ OVERRIDE;
// Invoked by the InstantLoader when the Instant page wants to undo all
// Most Visited deletions.
@@ -352,7 +354,8 @@ class InstantController : public InstantPage::Delegate,
// Sends a collection of MostVisitedItems to the renderer process via
// the appropriate InstantPage subclass.
- void SendMostVisitedItems(const std::vector<InstantMostVisitedItem>& items);
+ void SendMostVisitedItems(
+ const std::vector<InstantMostVisitedItemIDPair>& items);
// If possible, tries to mutate |suggestion| to a valid suggestion. Returns
// true if successful. (Note that |suggestion| may be modified even if this
« no previous file with comments | « chrome/browser/search/instant_service.cc ('k') | chrome/browser/ui/search/instant_controller.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698