| 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 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 int64 GetFrameID() const OVERRIDE; | 74 virtual int64 GetFrameID() const OVERRIDE; |
| 75 virtual bool ParentIsMainFrame() const OVERRIDE; | 75 virtual bool ParentIsMainFrame() const OVERRIDE; |
| 76 virtual int64 GetParentFrameID() const OVERRIDE; | 76 virtual int64 GetParentFrameID() const OVERRIDE; |
| 77 virtual ResourceType::Type GetResourceType() const OVERRIDE; | 77 virtual ResourceType::Type GetResourceType() const OVERRIDE; |
| 78 virtual int GetProcessType() const OVERRIDE; |
| 78 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; | 79 virtual blink::WebReferrerPolicy GetReferrerPolicy() const OVERRIDE; |
| 79 virtual PageTransition GetPageTransition() const OVERRIDE; | 80 virtual PageTransition GetPageTransition() const OVERRIDE; |
| 80 virtual bool HasUserGesture() const OVERRIDE; | 81 virtual bool HasUserGesture() const OVERRIDE; |
| 81 virtual bool WasIgnoredByHandler() const OVERRIDE; | 82 virtual bool WasIgnoredByHandler() const OVERRIDE; |
| 82 virtual bool GetAssociatedRenderFrame(int* render_process_id, | 83 virtual bool GetAssociatedRenderFrame(int* render_process_id, |
| 83 int* render_frame_id) const OVERRIDE; | 84 int* render_frame_id) const OVERRIDE; |
| 84 virtual bool IsAsync() const OVERRIDE; | 85 virtual bool IsAsync() const OVERRIDE; |
| 85 virtual bool IsDownload() const OVERRIDE; | 86 virtual bool IsDownload() const OVERRIDE; |
| 86 | 87 |
| 87 | 88 |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 186 // exits during a transfer. | 187 // exits during a transfer. |
| 187 base::WeakPtr<ResourceMessageFilter> filter_; | 188 base::WeakPtr<ResourceMessageFilter> filter_; |
| 188 bool is_async_; | 189 bool is_async_; |
| 189 | 190 |
| 190 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl); | 191 DISALLOW_COPY_AND_ASSIGN(ResourceRequestInfoImpl); |
| 191 }; | 192 }; |
| 192 | 193 |
| 193 } // namespace content | 194 } // namespace content |
| 194 | 195 |
| 195 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ | 196 #endif // CONTENT_BROWSER_LOADER_RESOURCE_REQUEST_INFO_IMPL_H_ |
| OLD | NEW |