| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ | 5 #ifndef CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ |
| 6 #define CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ | 6 #define CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ |
| 7 | 7 |
| 8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
| 9 #include "content/common/content_export.h" | 9 #include "content/common/content_export.h" |
| 10 #include "content/public/common/page_transition_types.h" | 10 #include "content/public/common/page_transition_types.h" |
| 11 #include "webkit/glue/weburlrequest_extradata_impl.h" | 11 #include "webkit/glue/weburlrequest_extradata_impl.h" |
| 12 | 12 |
| 13 namespace content { | 13 namespace content { |
| 14 | 14 |
| 15 // The RenderView stores an instance of this class in the "extra data" of each | 15 // The RenderView stores an instance of this class in the "extra data" of each |
| 16 // ResourceRequest (see RenderView::willSendRequest). | 16 // ResourceRequest (see RenderView::willSendRequest). |
| 17 class CONTENT_EXPORT RequestExtraData | 17 class CONTENT_EXPORT RequestExtraData |
| 18 : NON_EXPORTED_BASE(public webkit_glue::WebURLRequestExtraDataImpl) { | 18 : NON_EXPORTED_BASE(public webkit_glue::WebURLRequestExtraDataImpl) { |
| 19 public: | 19 public: |
| 20 RequestExtraData(WebKit::WebReferrerPolicy referrer_policy, | 20 RequestExtraData(WebKit::WebReferrerPolicy referrer_policy, |
| 21 const WebKit::WebString& custom_user_agent, | 21 const WebKit::WebString& custom_user_agent, |
| 22 const WebKit::WebString& requested_with, |
| 22 bool is_main_frame, | 23 bool is_main_frame, |
| 23 int64 frame_id, | 24 int64 frame_id, |
| 24 bool parent_is_main_frame, | 25 bool parent_is_main_frame, |
| 25 int64 parent_frame_id, | 26 int64 parent_frame_id, |
| 26 bool allow_download, | 27 bool allow_download, |
| 27 PageTransition transition_type, | 28 PageTransition transition_type, |
| 28 int transferred_request_child_id, | 29 int transferred_request_child_id, |
| 29 int transferred_request_request_id); | 30 int transferred_request_request_id); |
| 30 virtual ~RequestExtraData(); | 31 virtual ~RequestExtraData(); |
| 31 | 32 |
| (...skipping 19 matching lines...) Expand all Loading... |
| 51 PageTransition transition_type_; | 52 PageTransition transition_type_; |
| 52 int transferred_request_child_id_; | 53 int transferred_request_child_id_; |
| 53 int transferred_request_request_id_; | 54 int transferred_request_request_id_; |
| 54 | 55 |
| 55 DISALLOW_COPY_AND_ASSIGN(RequestExtraData); | 56 DISALLOW_COPY_AND_ASSIGN(RequestExtraData); |
| 56 }; | 57 }; |
| 57 | 58 |
| 58 } // namespace content | 59 } // namespace content |
| 59 | 60 |
| 60 #endif // CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ | 61 #endif // CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ |
| OLD | NEW |