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_delegate.h" | 5 #include "content/browser/renderer_host/resource_dispatcher_host_delegate.h" |
6 | 6 |
7 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { | 7 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { |
8 } | 8 } |
9 | 9 |
10 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 10 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 ResourceDispatcherHostLoginDelegate* | 54 ResourceDispatcherHostLoginDelegate* |
55 ResourceDispatcherHostDelegate::CreateLoginDelegate( | 55 ResourceDispatcherHostDelegate::CreateLoginDelegate( |
56 net::AuthChallengeInfo* auth_info, net::URLRequest* request) { | 56 net::AuthChallengeInfo* auth_info, net::URLRequest* request) { |
57 return NULL; | 57 return NULL; |
58 } | 58 } |
59 | 59 |
60 void ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url, | 60 void ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url, |
61 int child_id, | 61 int child_id, |
62 int route_id) { | 62 int route_id) { |
63 } | 63 } |
| 64 |
| 65 bool ResourceDispatcherHostDelegate::ShouldForceDownloadResource( |
| 66 const GURL& url, const std::string& mime_type) { |
| 67 return false; |
| 68 } |
OLD | NEW |