Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(473)

Side by Side Diff: content/public/browser/resource_dispatcher_host_delegate.cc

Issue 141163002: Make PrerenderTracker's resource_throttle_io_thread_map_ use RenderFrame IDs instead of RenderView … (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: simplify code Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698