Index: chrome/browser/instant/instant_controller.h |
diff --git a/chrome/browser/instant/instant_controller.h b/chrome/browser/instant/instant_controller.h |
index 208dccbd0eb2f3f210d14afbdd6ffdbb73255208..92b811be8655c40afeacb095816fad8ebe804750 100644 |
--- a/chrome/browser/instant/instant_controller.h |
+++ b/chrome/browser/instant/instant_controller.h |
@@ -251,11 +251,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 restricted_id) |
dhollowa
2013/03/14 00:02:43
Lets keep |most_visited_item_id| for clarity. The
Shishir
2013/03/14 19:53:03
Done.
|
+ 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 restricted_id) |
dhollowa
2013/03/14 00:02:43
Ditto.
Shishir
2013/03/14 19:53:03
Done.
|
+ OVERRIDE; |
// Invoked by the InstantLoader when the Instant page wants to undo all |
// Most Visited deletions. |
@@ -349,7 +351,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); |
chrome::BrowserInstantController* const browser_; |