| 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 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 42 CONTENT_EXPORT ResourceRequestInfoImpl( | 42 CONTENT_EXPORT ResourceRequestInfoImpl( |
| 43 int process_type, | 43 int process_type, |
| 44 int child_id, | 44 int child_id, |
| 45 int route_id, | 45 int route_id, |
| 46 int origin_pid, | 46 int origin_pid, |
| 47 int request_id, | 47 int request_id, |
| 48 int render_frame_id, | 48 int render_frame_id, |
| 49 bool is_main_frame, | 49 bool is_main_frame, |
| 50 bool parent_is_main_frame, | 50 bool parent_is_main_frame, |
| 51 int parent_render_frame_id, | 51 int parent_render_frame_id, |
| 52 ResourceType::Type resource_type, | 52 ResourceType resource_type, |
| 53 PageTransition transition_type, | 53 PageTransition transition_type, |
| 54 bool should_replace_current_entry, | 54 bool should_replace_current_entry, |
| 55 bool is_download, | 55 bool is_download, |
| 56 bool is_stream, | 56 bool is_stream, |
| 57 bool allow_download, | 57 bool allow_download, |
| 58 bool has_user_gesture, | 58 bool has_user_gesture, |
| 59 blink::WebReferrerPolicy referrer_policy, | 59 blink::WebReferrerPolicy referrer_policy, |
| 60 blink::WebPageVisibilityState visibility_state, | 60 blink::WebPageVisibilityState visibility_state, |
| 61 ResourceContext* context, | 61 ResourceContext* context, |
| 62 base::WeakPtr<ResourceMessageFilter> filter, | 62 base::WeakPtr<ResourceMessageFilter> filter, |
| 63 bool is_async); | 63 bool is_async); |
| 64 virtual ~ResourceRequestInfoImpl(); | 64 virtual ~ResourceRequestInfoImpl(); |
| 65 | 65 |
| 66 // ResourceRequestInfo implementation: | 66 // ResourceRequestInfo implementation: |
| 67 virtual ResourceContext* GetContext() const OVERRIDE; | 67 virtual ResourceContext* GetContext() const OVERRIDE; |
| 68 virtual int GetChildID() const OVERRIDE; | 68 virtual int GetChildID() const OVERRIDE; |
| 69 virtual int GetRouteID() const OVERRIDE; | 69 virtual int GetRouteID() const OVERRIDE; |
| 70 virtual int GetOriginPID() const OVERRIDE; | 70 virtual int GetOriginPID() const OVERRIDE; |
| 71 virtual int GetRequestID() const OVERRIDE; | 71 virtual int GetRequestID() const OVERRIDE; |
| 72 virtual int GetRenderFrameID() const OVERRIDE; | 72 virtual int GetRenderFrameID() const OVERRIDE; |
| 73 virtual bool IsMainFrame() const OVERRIDE; | 73 virtual bool IsMainFrame() const OVERRIDE; |
| 74 virtual bool ParentIsMainFrame() const OVERRIDE; | 74 virtual bool ParentIsMainFrame() const OVERRIDE; |
| 75 virtual int GetParentRenderFrameID() const OVERRIDE; | 75 virtual int GetParentRenderFrameID() const OVERRIDE; |
| 76 virtual ResourceType::Type GetResourceType() const OVERRIDE; | 76 virtual ResourceType GetResourceType() const OVERRIDE; |
| 77 virtual int GetProcessType() const OVERRIDE; | 77 virtual int GetProcessType() const OVERRIDE; |
| 78 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; | 78 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; |
| 79 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; | 79 virtual blink::WebPageVisibilityState GetVisibilityState() const OVERRIDE; |
| 80 virtual PageTransition GetPageTransition() const OVERRIDE; | 80 virtual PageTransition GetPageTransition() const OVERRIDE; |
| 81 virtual bool HasUserGesture() const OVERRIDE; | 81 virtual bool HasUserGesture() const OVERRIDE; |
| 82 virtual bool WasIgnoredByHandler() const OVERRIDE; | 82 virtual bool WasIgnoredByHandler() const OVERRIDE; |
| 83 virtual bool GetAssociatedRenderFrame(int* render_process_id, | 83 virtual bool GetAssociatedRenderFrame(int* render_process_id, |
| 84 int* render_frame_id) const OVERRIDE; | 84 int* render_frame_id) const OVERRIDE; |
| 85 virtual bool IsAsync() const OVERRIDE; | 85 virtual bool IsAsync() const OVERRIDE; |
| 86 virtual bool IsDownload() const OVERRIDE; | 86 virtual bool IsDownload() const OVERRIDE; |
| (...skipping 82 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 169 int render_frame_id_; | 169 int render_frame_id_; |
| 170 bool is_main_frame_; | 170 bool is_main_frame_; |
| 171 bool parent_is_main_frame_; | 171 bool parent_is_main_frame_; |
| 172 int parent_render_frame_id_; | 172 int parent_render_frame_id_; |
| 173 bool should_replace_current_entry_; | 173 bool should_replace_current_entry_; |
| 174 bool is_download_; | 174 bool is_download_; |
| 175 bool is_stream_; | 175 bool is_stream_; |
| 176 bool allow_download_; | 176 bool allow_download_; |
| 177 bool has_user_gesture_; | 177 bool has_user_gesture_; |
| 178 bool was_ignored_by_handler_; | 178 bool was_ignored_by_handler_; |
| 179 ResourceType::Type resource_type_; | 179 ResourceType resource_type_; |
| 180 PageTransition transition_type_; | 180 PageTransition transition_type_; |
| 181 int memory_cost_; | 181 int memory_cost_; |
| 182 blink::WebReferrerPolicy referrer_policy_; | 182 blink::WebReferrerPolicy referrer_policy_; |
| 183 blink::WebPageVisibilityState visibility_state_; | 183 blink::WebPageVisibilityState visibility_state_; |
| 184 ResourceContext* context_; | 184 ResourceContext* context_; |
| 185 // The filter might be deleted without deleting this object if the process | 185 // The filter might be deleted without deleting this object if the process |
| 186 // exits during a transfer. | 186 // exits during a transfer. |
| 187 base::WeakPtr<ResourceMessageFilter> filter_; | 187 base::WeakPtr<ResourceMessageFilter> filter_; |
| 188 bool is_async_; | 188 bool is_async_; |
| 189 | 189 |
| 190 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl); | 190 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl); |
| 191 }; | 191 }; |
| 192 | 192 |
| 193 } // namespace content | 193 } // namespace content |
| 194 | 194 |
| 195 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ | 195 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ |
| OLD | NEW |