| Index: content/public/browser/resource_dispatcher_host_delegate.cc
|
| diff --git a/content/public/browser/resource_dispatcher_host_delegate.cc b/content/public/browser/resource_dispatcher_host_delegate.cc
|
| index ccd358f436f40c16cfe3b5dd8b092bfefee2ccad..b7b96c316a013ea4d0e696d542aa4cfa11412cab 100644
|
| --- a/content/public/browser/resource_dispatcher_host_delegate.cc
|
| +++ b/content/public/browser/resource_dispatcher_host_delegate.cc
|
| @@ -61,21 +61,16 @@ bool ResourceDispatcherHostDelegate::ShouldForceDownloadResource(
|
| }
|
|
|
| bool ResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream(
|
| - content::ResourceContext* resource_context,
|
| - const GURL& url,
|
| + net::URLRequest* request,
|
| const std::string& mime_type,
|
| GURL* origin,
|
| - std::string* target_id) {
|
| + std::string* payload) {
|
| return false;
|
| }
|
|
|
| void ResourceDispatcherHostDelegate::OnStreamCreated(
|
| - content::ResourceContext* resource_context,
|
| - int render_process_id,
|
| - int render_view_id,
|
| - const std::string& target_id,
|
| - scoped_ptr<StreamHandle> stream,
|
| - int64 expected_content_size) {
|
| + net::URLRequest* request,
|
| + scoped_ptr<content::StreamHandle> stream) {
|
| }
|
|
|
| void ResourceDispatcherHostDelegate::OnResponseStarted(
|
|
|