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

Unified Diff: chrome/browser/tab_contents/navigation_entry.h

Issue 46055: RSS feed support (part 1), 2nd attempt (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 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
Index: chrome/browser/tab_contents/navigation_entry.h
===================================================================
--- chrome/browser/tab_contents/navigation_entry.h (revision 11648)
+++ chrome/browser/tab_contents/navigation_entry.h (working copy)
@@ -15,6 +15,7 @@
#include "googleurl/src/gurl.h"
#include "grit/theme_resources.h"
#include "skia/include/SkBitmap.h"
+#include "webkit/glue/feed.h"
class NavigationController;
@@ -323,6 +324,14 @@
// 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
@@ -393,6 +402,7 @@
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_;
« no previous file with comments | « chrome/browser/renderer_host/render_view_host_delegate.h ('k') | chrome/browser/tab_contents/tab_contents.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698