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

Unified Diff: content/common/request_extra_data.cc

Issue 8616006: Implement meta referrer (part 1/2) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 9 years, 1 month 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
« no previous file with comments | « content/common/request_extra_data.h ('k') | content/common/resource_dispatcher_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/common/request_extra_data.cc
diff --git a/content/common/request_extra_data.cc b/content/common/request_extra_data.cc
index 186180835e931f0b3addfd2a15db1b8e3563fb4f..a079a39de6c7100a0ffd021b2ef169593170a893 100644
--- a/content/common/request_extra_data.cc
+++ b/content/common/request_extra_data.cc
@@ -4,12 +4,16 @@
#include "content/common/request_extra_data.h"
-RequestExtraData::RequestExtraData(bool is_main_frame,
+using WebKit::WebReferrerPolicy;
+
+RequestExtraData::RequestExtraData(WebReferrerPolicy referrer_policy,
+ bool is_main_frame,
int64 frame_id,
bool parent_is_main_frame,
int64 parent_frame_id,
content::PageTransition transition_type)
- : is_main_frame_(is_main_frame),
+ : webkit_glue::WebURLRequestExtraDataImpl(referrer_policy),
+ is_main_frame_(is_main_frame),
frame_id_(frame_id),
parent_is_main_frame_(parent_is_main_frame),
parent_frame_id_(parent_frame_id),
« no previous file with comments | « content/common/request_extra_data.h ('k') | content/common/resource_dispatcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698