Chromium Code Reviews| Index: content/child/request_extra_data.h |
| diff --git a/content/child/request_extra_data.h b/content/child/request_extra_data.h |
| index 83adf28d5b7c39e7692a8543fd3891ddce7c82aa..b2b43e9b91eec16b967ad426d7ce8984fbc867e0 100644 |
| --- a/content/child/request_extra_data.h |
| +++ b/content/child/request_extra_data.h |
| @@ -22,6 +22,7 @@ class CONTENT_EXPORT RequestExtraData |
| bool was_after_preconnect_request, |
| bool is_main_frame, |
| int64 frame_id, |
| + const WebKit::WebString& frame_origin, |
| bool parent_is_main_frame, |
| int64 parent_frame_id, |
| bool allow_download, |
| @@ -32,6 +33,7 @@ class CONTENT_EXPORT RequestExtraData |
| bool is_main_frame() const { return is_main_frame_; } |
| int64 frame_id() const { return frame_id_; } |
| + WebKit::WebString frame_origin() const { return frame_origin_; } |
| bool parent_is_main_frame() const { return parent_is_main_frame_; } |
| int64 parent_frame_id() const { return parent_frame_id_; } |
| bool allow_download() const { return allow_download_; } |
| @@ -46,6 +48,7 @@ class CONTENT_EXPORT RequestExtraData |
| private: |
| bool is_main_frame_; |
| int64 frame_id_; |
| + WebKit::WebString frame_origin_; |
|
Charlie Reis
2013/08/19 16:20:06
It seems like we should store this in a GURL if po
dsjang
2013/08/19 21:37:18
The first object we get from WebKit is SecurityOri
|
| bool parent_is_main_frame_; |
| int64 parent_frame_id_; |
| bool allow_download_; |