| 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 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" | 5 #include "content/browser/renderer_host/resource_dispatcher_host_request_info.h" |
| 6 | 6 |
| 7 #include "content/browser/renderer_host/resource_dispatcher_host_login_delegate.
h" | 7 #include "content/browser/renderer_host/resource_dispatcher_host_login_delegate.
h" |
| 8 #include "content/browser/renderer_host/resource_handler.h" | 8 #include "content/browser/renderer_host/resource_handler.h" |
| 9 #include "content/browser/ssl/ssl_client_auth_handler.h" | 9 #include "content/browser/ssl/ssl_client_auth_handler.h" |
| 10 #include "webkit/blob/blob_data.h" | 10 #include "webkit/blob/blob_data.h" |
| 11 | 11 |
| 12 ResourceDispatcherHostRequestInfo::ResourceDispatcherHostRequestInfo( | 12 ResourceDispatcherHostRequestInfo::ResourceDispatcherHostRequestInfo( |
| 13 ResourceHandler* handler, | 13 ResourceHandler* handler, |
| 14 ChildProcessInfo::ProcessType process_type, | 14 content::ProcessType process_type, |
| 15 int child_id, | 15 int child_id, |
| 16 int route_id, | 16 int route_id, |
| 17 int origin_pid, | 17 int origin_pid, |
| 18 int request_id, | 18 int request_id, |
| 19 bool is_main_frame, | 19 bool is_main_frame, |
| 20 int64 frame_id, | 20 int64 frame_id, |
| 21 bool parent_is_main_frame, | 21 bool parent_is_main_frame, |
| 22 int64 parent_frame_id, | 22 int64 parent_frame_id, |
| 23 ResourceType::Type resource_type, | 23 ResourceType::Type resource_type, |
| 24 content::PageTransition transition_type, | 24 content::PageTransition transition_type, |
| (...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 67 | 67 |
| 68 void ResourceDispatcherHostRequestInfo::set_ssl_client_auth_handler( | 68 void ResourceDispatcherHostRequestInfo::set_ssl_client_auth_handler( |
| 69 SSLClientAuthHandler* s) { | 69 SSLClientAuthHandler* s) { |
| 70 ssl_client_auth_handler_ = s; | 70 ssl_client_auth_handler_ = s; |
| 71 } | 71 } |
| 72 | 72 |
| 73 void ResourceDispatcherHostRequestInfo::set_requested_blob_data( | 73 void ResourceDispatcherHostRequestInfo::set_requested_blob_data( |
| 74 webkit_blob::BlobData* data) { | 74 webkit_blob::BlobData* data) { |
| 75 requested_blob_data_ = data; | 75 requested_blob_data_ = data; |
| 76 } | 76 } |
| OLD | NEW |