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 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 IPC::Sender* sender) { | 83 IPC::Sender* sender) { |
84 } | 84 } |
85 | 85 |
86 void ResourceDispatcherHostDelegate::OnRequestRedirected( | 86 void ResourceDispatcherHostDelegate::OnRequestRedirected( |
87 const GURL& redirect_url, | 87 const GURL& redirect_url, |
88 net::URLRequest* request, | 88 net::URLRequest* request, |
89 ResourceContext* resource_context, | 89 ResourceContext* resource_context, |
90 ResourceResponse* response) { | 90 ResourceResponse* response) { |
91 } | 91 } |
92 | 92 |
| 93 void ResourceDispatcherHostDelegate::RequestComplete( |
| 94 net::URLRequest* url_request) { |
| 95 } |
| 96 |
93 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { | 97 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { |
94 } | 98 } |
95 | 99 |
96 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 100 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
97 } | 101 } |
98 | 102 |
99 } // namespace content | 103 } // namespace content |
OLD | NEW |