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

Unified Diff: chrome/browser/sessions/session_types.h

Issue 7791029: When the user navigates to the home page, make sure to set the RLZ string (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Adressing review comments Created 9 years, 4 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/sessions/session_types.h
===================================================================
--- chrome/browser/sessions/session_types.h (revision 98807)
+++ chrome/browser/sessions/session_types.h (working copy)
@@ -83,6 +83,13 @@
void set_index(int index) { index_ = index; }
int index() const { return index_; }
+ // The extra headers.
+ void set_extra_headers(const std::string& extra_headers) {
+ extra_headers_ = extra_headers;
+ }
+ const std::string& extra_headers() const { return extra_headers_; }
+
+ // State bits.
// Converts a set of TabNavigations into a set of NavigationEntrys. The
// caller owns the NavigationEntrys.
static void CreateNavigationEntriesFromTabNavigations(
@@ -99,6 +106,7 @@
std::string state_;
PageTransition::Type transition_;
int type_mask_;
+ std::string extra_headers_;
int index_;
};

Powered by Google App Engine
This is Rietveld 408576698