| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "content/common/content_export.h" | 10 #include "content/common/content_export.h" |
| 11 #include "content/public/common/page_transition_types.h" | 11 #include "content/public/common/page_transition_types.h" |
| 12 #include "third_party/WebKit/Source/WebKit/chromium/public/WebURLRequest.h" | 12 #include "webkit/glue/weburlrequest_extradata_impl.h" |
| 13 | 13 |
| 14 // The RenderView stores an instance of this class in the "extra data" of each | 14 // The RenderView stores an instance of this class in the "extra data" of each |
| 15 // ResourceRequest (see RenderView::willSendRequest). | 15 // ResourceRequest (see RenderView::willSendRequest). |
| 16 class CONTENT_EXPORT RequestExtraData | 16 class CONTENT_EXPORT RequestExtraData |
| 17 : NON_EXPORTED_BASE(public WebKit::WebURLRequest::ExtraData) { | 17 : NON_EXPORTED_BASE(public webkit_glue::WebURLRequestExtraDataImpl) { |
| 18 public: | 18 public: |
| 19 RequestExtraData(bool is_main_frame, | 19 RequestExtraData(WebKit::WebReferrerPolicy referrer_policy, |
| 20 bool is_main_frame, |
| 20 int64 frame_id, | 21 int64 frame_id, |
| 21 bool parent_is_main_frame, | 22 bool parent_is_main_frame, |
| 22 int64 parent_frame_id, | 23 int64 parent_frame_id, |
| 23 content::PageTransition transition_type); | 24 content::PageTransition transition_type); |
| 24 virtual ~RequestExtraData(); | 25 virtual ~RequestExtraData(); |
| 25 | 26 |
| 26 bool is_main_frame() const { return is_main_frame_; } | 27 bool is_main_frame() const { return is_main_frame_; } |
| 27 int64 frame_id() const { return frame_id_; } | 28 int64 frame_id() const { return frame_id_; } |
| 28 bool parent_is_main_frame() const { return parent_is_main_frame_; } | 29 bool parent_is_main_frame() const { return parent_is_main_frame_; } |
| 29 int64 parent_frame_id() const { return parent_frame_id_; } | 30 int64 parent_frame_id() const { return parent_frame_id_; } |
| 30 content::PageTransition transition_type() const { return transition_type_; } | 31 content::PageTransition transition_type() const { return transition_type_; } |
| 31 | 32 |
| 32 private: | 33 private: |
| 33 bool is_main_frame_; | 34 bool is_main_frame_; |
| 34 int64 frame_id_; | 35 int64 frame_id_; |
| 35 bool parent_is_main_frame_; | 36 bool parent_is_main_frame_; |
| 36 int64 parent_frame_id_; | 37 int64 parent_frame_id_; |
| 37 content::PageTransition transition_type_; | 38 content::PageTransition transition_type_; |
| 38 | 39 |
| 39 DISALLOW_COPY_AND_ASSIGN(RequestExtraData); | 40 DISALLOW_COPY_AND_ASSIGN(RequestExtraData); |
| 40 }; | 41 }; |
| 41 | 42 |
| 42 #endif // CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ | 43 #endif // CONTENT_COMMON_REQUEST_EXTRA_DATA_H_ |
| OLD | NEW |