summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/web_contents.cc
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-13 18:15:01 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-03-13 18:15:01 +0000
commit751cef05106cef2269e2d2e2383b6627f4b20318 (patch)
treee2937cea1b816a9dd998a24a539ffea03b375d27 /chrome/browser/tab_contents/web_contents.cc
parent08fb74a9f12f59c531cc5d7acdb0afea183dba12 (diff)
downloadchromium_src-751cef05106cef2269e2d2e2383b6627f4b20318.zip
chromium_src-751cef05106cef2269e2d2e2383b6627f4b20318.tar.gz
chromium_src-751cef05106cef2269e2d2e2383b6627f4b20318.tar.bz2
Reverting 11640.
Reverting for now. Will try again later git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11645 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/web_contents.cc')
-rw-r--r--chrome/browser/tab_contents/web_contents.cc20
1 files changed, 0 insertions, 20 deletions
diff --git a/chrome/browser/tab_contents/web_contents.cc b/chrome/browser/tab_contents/web_contents.cc
index 069f932..5b935b5 100644
--- a/chrome/browser/tab_contents/web_contents.cc
+++ b/chrome/browser/tab_contents/web_contents.cc
@@ -42,7 +42,6 @@
#include "net/base/mime_util.h"
#include "net/base/net_errors.h"
#include "net/base/registry_controlled_domain.h"
-#include "webkit/glue/feed.h"
#include "webkit/glue/webkit_glue.h"
#if defined(OS_WIN)
@@ -808,25 +807,6 @@ void WebContents::UpdateTitle(RenderViewHost* rvh,
NotifyNavigationStateChanged(INVALIDATE_TITLE);
}
-void WebContents::UpdateFeedList(
- RenderViewHost* rvh, const ViewHostMsg_UpdateFeedList_Params& params) {
- if (!controller())
- return;
-
- DCHECK(rvh == render_view_host());
- NavigationEntry* entry = controller()->GetEntryWithPageID(type(),
- 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 WebContents::UpdateEncoding(RenderViewHost* render_view_host,
const std::wstring& encoding) {
set_encoding(encoding);