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_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ | 5 #ifndef CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ |
6 #define CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ | 6 #define CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
(...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
51 bool parent_is_main_frame, | 51 bool parent_is_main_frame, |
52 int64 parent_frame_id, | 52 int64 parent_frame_id, |
53 ResourceType::Type resource_type, | 53 ResourceType::Type resource_type, |
54 PageTransition transition_type, | 54 PageTransition transition_type, |
55 bool should_replace_current_entry, | 55 bool should_replace_current_entry, |
56 bool is_download, | 56 bool is_download, |
57 bool is_stream, | 57 bool is_stream, |
58 bool allow_download, | 58 bool allow_download, |
59 bool has_user_gesture, | 59 bool has_user_gesture, |
60 blink::WebReferrerPolicy referrer_policy, | 60 blink::WebReferrerPolicy referrer_policy, |
| 61 blink::WebPageVisibilityState visibility_state, |
61 ResourceContext* context, | 62 ResourceContext* context, |
62 base::WeakPtr<ResourceMessageFilter> filter, | 63 base::WeakPtr<ResourceMessageFilter> filter, |
63 bool is_async); | 64 bool is_async); |
64 virtual ~ResourceRequestInfoImpl(); | 65 virtual ~ResourceRequestInfoImpl(); |
65 | 66 |
66 // ResourceRequestInfo implementation: | 67 // ResourceRequestInfo implementation: |
67 virtual ResourceContext* GetContext() const OVERRIDE; | 68 virtual ResourceContext* GetContext() const OVERRIDE; |
68 virtual int GetChildID() const OVERRIDE; | 69 virtual int GetChildID() const OVERRIDE; |
69 virtual int GetRouteID() const OVERRIDE; | 70 virtual int GetRouteID() const OVERRIDE; |
70 virtual int GetOriginPID() const OVERRIDE; | 71 virtual int GetOriginPID() const OVERRIDE; |
71 virtual int GetRequestID() const OVERRIDE; | 72 virtual int GetRequestID() const OVERRIDE; |
72 virtual int GetRenderFrameID() const OVERRIDE; | 73 virtual int GetRenderFrameID() const OVERRIDE; |
73 virtual bool IsMainFrame() const OVERRIDE; | 74 virtual bool IsMainFrame() const OVERRIDE; |
74 virtual int64 GetFrameID() const OVERRIDE; | 75 virtual int64 GetFrameID() const OVERRIDE; |
75 virtual bool ParentIsMainFrame() const OVERRIDE; | 76 virtual bool ParentIsMainFrame() const OVERRIDE; |
76 virtual int64 GetParentFrameID() const OVERRIDE; | 77 virtual int64 GetParentFrameID() const OVERRIDE; |
77 virtual ResourceType::Type GetResourceType() const OVERRIDE; | 78 virtual ResourceType::Type GetResourceType() const OVERRIDE; |
78 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; | 79 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; |
| 80 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
79 virtual PageTransition GetPageTransition() const OVERRIDE; | 81 virtual PageTransition GetPageTransition() const OVERRIDE; |
80 virtual bool HasUserGesture() const OVERRIDE; | 82 virtual bool HasUserGesture() const OVERRIDE; |
81 virtual bool WasIgnoredByHandler() const OVERRIDE; | 83 virtual bool WasIgnoredByHandler() const OVERRIDE; |
82 virtual bool GetAssociatedRenderFrame(int* render_process_id, | 84 virtual bool GetAssociatedRenderFrame(int* render_process_id, |
83 int* render_frame_id) const OVERRIDE; | 85 int* render_frame_id) const OVERRIDE; |
84 virtual bool IsAsync() const OVERRIDE; | 86 virtual bool IsAsync() const OVERRIDE; |
85 virtual bool IsDownload() const OVERRIDE; | 87 virtual bool IsDownload() const OVERRIDE; |
86 | 88 |
87 | 89 |
88 CONTENT_EXPORT void AssociateWithRequest(net::URLRequest* request); | 90 CONTENT_EXPORT void AssociateWithRequest(net::URLRequest* request); |
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
174 bool should_replace_current_entry_; | 176 bool should_replace_current_entry_; |
175 bool is_download_; | 177 bool is_download_; |
176 bool is_stream_; | 178 bool is_stream_; |
177 bool allow_download_; | 179 bool allow_download_; |
178 bool has_user_gesture_; | 180 bool has_user_gesture_; |
179 bool was_ignored_by_handler_; | 181 bool was_ignored_by_handler_; |
180 ResourceType::Type resource_type_; | 182 ResourceType::Type resource_type_; |
181 PageTransition transition_type_; | 183 PageTransition transition_type_; |
182 int memory_cost_; | 184 int memory_cost_; |
183 blink::WebReferrerPolicy referrer_policy_; | 185 blink::WebReferrerPolicy referrer_policy_; |
| 186 blink::WebPageVisibilityState visibility_state_; |
184 ResourceContext* context_; | 187 ResourceContext* context_; |
185 // The filter might be deleted without deleting this object if the process | 188 // The filter might be deleted without deleting this object if the process |
186 // exits during a transfer. | 189 // exits during a transfer. |
187 base::WeakPtr<ResourceMessageFilter> filter_; | 190 base::WeakPtr<ResourceMessageFilter> filter_; |
188 bool is_async_; | 191 bool is_async_; |
189 | 192 |
190 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl); | 193 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl); |
191 }; | 194 }; |
192 | 195 |
193 } // namespace content | 196 } // namespace content |
194 | 197 |
195 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ | 198 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ |
OLD | NEW |