summaryrefslogtreecommitdiffstats
path: root/chrome/browser/tab_contents/navigation_entry.h
diff options
context:
space:
mode:
authorfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-04 22:48:08 +0000
committerfinnur@chromium.org <finnur@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-05-04 22:48:08 +0000
commitcbc0e9cc6651df9bb4a256c30c7d4a8fce36d066 (patch)
tree04db665d0a50888ece0b9e5c83695b7860381827 /chrome/browser/tab_contents/navigation_entry.h
parent81cf6f77e3bf3a413220d9b28ba83d85567d9048 (diff)
downloadchromium_src-cbc0e9cc6651df9bb4a256c30c7d4a8fce36d066.zip
chromium_src-cbc0e9cc6651df9bb4a256c30c7d4a8fce36d066.tar.gz
chromium_src-cbc0e9cc6651df9bb4a256c30c7d4a8fce36d066.tar.bz2
Fix bug 9812: Remove current RSS code in favor of new more generalized
PageAction code that serves the same purpose (and more). BUG=9812 TEST=No test needed, this shouldn't result in any noticable difference since the RSS parsing was disabled. Review URL: http://codereview.chromium.org/100356 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@15247 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/tab_contents/navigation_entry.h')
-rw-r--r--chrome/browser/tab_contents/navigation_entry.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/chrome/browser/tab_contents/navigation_entry.h b/chrome/browser/tab_contents/navigation_entry.h
index 964a724..fb8a225 100644
--- a/chrome/browser/tab_contents/navigation_entry.h
+++ b/chrome/browser/tab_contents/navigation_entry.h
@@ -14,7 +14,6 @@
#include "googleurl/src/gurl.h"
#include "grit/theme_resources.h"
#include "skia/include/SkBitmap.h"
-#include "webkit/glue/feed.h"
class NavigationController;
@@ -323,14 +322,6 @@ class NavigationEntry {
// if there is no navigation.
bool IsViewSourceMode() const;
- // Feed accessor.
- void set_feedlist(scoped_refptr<FeedList> feedlist) {
- feedlist_ = feedlist;
- }
- scoped_refptr<FeedList> feedlist() {
- return feedlist_;
- }
-
// Tracking stuff ------------------------------------------------------------
// The transition type indicates what the user did to move to this page from
@@ -400,7 +391,6 @@ class NavigationEntry {
std::string content_state_;
int32 page_id_;
SSLStatus ssl_;
- scoped_refptr<FeedList> feedlist_;
PageTransition::Type transition_type_;
GURL user_typed_url_;
bool has_post_data_;