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

Unified Diff: content/child/request_extra_data.cc

Issue 22254005: UMA data collector for cross-site documents(XSD) (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@lkgr
Patch Set: ResourceDispatcher uses SiteIsolationPolicy as the outermost Peer Created 7 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: content/child/request_extra_data.cc
diff --git a/content/child/request_extra_data.cc b/content/child/request_extra_data.cc
index 419fbb442be50a9160502fe90abc432024f335c1..7e1796f8c391ee9facd60881f463ddbc628a03b0 100644
--- a/content/child/request_extra_data.cc
+++ b/content/child/request_extra_data.cc
@@ -5,6 +5,7 @@
#include "content/child/request_extra_data.h"
using WebKit::WebReferrerPolicy;
+using WebKit::WebSecurityOrigin;
darin (slow to review) 2013/08/20 23:47:05 nit: not needed
dsjang 2013/08/21 18:49:57 Done.
using WebKit::WebString;
namespace content {
@@ -14,6 +15,7 @@ RequestExtraData::RequestExtraData(WebReferrerPolicy referrer_policy,
bool was_after_preconnect_request,
bool is_main_frame,
int64 frame_id,
+ const GURL& frame_origin,
bool parent_is_main_frame,
int64 parent_frame_id,
bool allow_download,
@@ -25,6 +27,7 @@ RequestExtraData::RequestExtraData(WebReferrerPolicy referrer_policy,
was_after_preconnect_request),
is_main_frame_(is_main_frame),
frame_id_(frame_id),
+ frame_origin_(frame_origin),
parent_is_main_frame_(parent_is_main_frame),
parent_frame_id_(parent_frame_id),
allow_download_(allow_download),

Powered by Google App Engine
This is Rietveld 408576698