summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/tab_contents.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/tab_contents/tab_contents.cc')
-rw-r--r--chrome/browser/tab_contents/tab_contents.cc19
1 files changed, 0 insertions, 19 deletions
diff --git a/chrome/browser/tab_contents/tab_contents.cc b/chrome/browser/tab_contents/tab_contents.cc
index 035203e..72ee5602 100644
--- a/chrome/browser/tab_contents/tab_contents.cc
+++ b/chrome/browser/tab_contents/tab_contents.cc
@@ -1725,25 +1725,6 @@ void TabContents::UpdateTitle(RenderViewHost* rvh,
NotifyNavigationStateChanged(INVALIDATE_TITLE);
}
-void TabContents::UpdateFeedList(
- RenderViewHost* rvh, const ViewHostMsg_UpdateFeedList_Params& params) {
- // We might have an old RenderViewHost sending messages, and we should ignore
- // those messages.
- if (rvh != render_view_host())
- return;
-
- NavigationEntry* entry = controller_.GetEntryWithPageID(GetSiteInstance(),
- params.page_id);
- if (!entry)
- return;
-
- entry->set_feedlist(params.feedlist);
-
- // Broadcast notifications when the UI should be updated.
- if (entry == controller_.GetEntryAtOffset(0))
- NotifyNavigationStateChanged(INVALIDATE_FEEDLIST);
-}
-
void TabContents::UpdateEncoding(RenderViewHost* render_view_host,
const std::wstring& encoding) {
set_encoding(encoding);