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 #include "content/public/browser/resource_dispatcher_host_delegate.h" | 5 #include "content/public/browser/resource_dispatcher_host_delegate.h" |
6 | 6 |
7 #include "content/public/browser/stream_handle.h" | 7 #include "content/public/browser/stream_handle.h" |
8 | 8 |
9 namespace content { | 9 namespace content { |
10 | 10 |
(...skipping 10 matching lines...) Expand all Loading... |
21 void ResourceDispatcherHostDelegate::RequestBeginning( | 21 void ResourceDispatcherHostDelegate::RequestBeginning( |
22 net::URLRequest* request, | 22 net::URLRequest* request, |
23 ResourceContext* resource_context, | 23 ResourceContext* resource_context, |
24 appcache::AppCacheService* appcache_service, | 24 appcache::AppCacheService* appcache_service, |
25 ResourceType::Type resource_type, | 25 ResourceType::Type resource_type, |
26 int child_id, | 26 int child_id, |
27 int route_id, | 27 int route_id, |
28 ScopedVector<ResourceThrottle>* throttles) { | 28 ScopedVector<ResourceThrottle>* throttles) { |
29 } | 29 } |
30 | 30 |
31 void ResourceDispatcherHostDelegate::WillTransferRequestToNewProcess( | |
32 int old_child_id, | |
33 int old_route_id, | |
34 int old_request_id, | |
35 int new_child_id, | |
36 int new_route_id, | |
37 int new_request_id) { | |
38 } | |
39 | |
40 void ResourceDispatcherHostDelegate::DownloadStarting( | 31 void ResourceDispatcherHostDelegate::DownloadStarting( |
41 net::URLRequest* request, | 32 net::URLRequest* request, |
42 ResourceContext* resource_context, | 33 ResourceContext* resource_context, |
43 int child_id, | 34 int child_id, |
44 int route_id, | 35 int route_id, |
45 int request_id, | 36 int request_id, |
46 bool is_content_initiated, | 37 bool is_content_initiated, |
47 bool must_download, | 38 bool must_download, |
48 ScopedVector<ResourceThrottle>* throttles) { | 39 ScopedVector<ResourceThrottle>* throttles) { |
49 } | 40 } |
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
99 ResourceResponse* response) { | 90 ResourceResponse* response) { |
100 } | 91 } |
101 | 92 |
102 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { | 93 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { |
103 } | 94 } |
104 | 95 |
105 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 96 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
106 } | 97 } |
107 | 98 |
108 } // namespace content | 99 } // namespace content |
OLD | NEW |