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 30 matching lines...) Expand all Loading... |
41 | 41 |
42 ResourceDispatcherHostLoginDelegate* | 42 ResourceDispatcherHostLoginDelegate* |
43 ResourceDispatcherHostDelegate::CreateLoginDelegate( | 43 ResourceDispatcherHostDelegate::CreateLoginDelegate( |
44 net::AuthChallengeInfo* auth_info, | 44 net::AuthChallengeInfo* auth_info, |
45 net::URLRequest* request) { | 45 net::URLRequest* request) { |
46 return NULL; | 46 return NULL; |
47 } | 47 } |
48 | 48 |
49 bool ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url, | 49 bool ResourceDispatcherHostDelegate::HandleExternalProtocol(const GURL& url, |
50 int child_id, | 50 int child_id, |
51 int route_id) { | 51 int route_id, |
| 52 bool user_gesture) { |
52 return true; | 53 return true; |
53 } | 54 } |
54 | 55 |
55 bool ResourceDispatcherHostDelegate::ShouldForceDownloadResource( | 56 bool ResourceDispatcherHostDelegate::ShouldForceDownloadResource( |
56 const GURL& url, | 57 const GURL& url, |
57 const std::string& mime_type) { | 58 const std::string& mime_type) { |
58 return false; | 59 return false; |
59 } | 60 } |
60 | 61 |
61 bool ResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream( | 62 bool ResourceDispatcherHostDelegate::ShouldInterceptResourceAsStream( |
(...skipping 28 matching lines...) Expand all Loading... |
90 ResourceResponse* response) { | 91 ResourceResponse* response) { |
91 } | 92 } |
92 | 93 |
93 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { | 94 ResourceDispatcherHostDelegate::ResourceDispatcherHostDelegate() { |
94 } | 95 } |
95 | 96 |
96 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { | 97 ResourceDispatcherHostDelegate::~ResourceDispatcherHostDelegate() { |
97 } | 98 } |
98 | 99 |
99 } // namespace content | 100 } // namespace content |
OLD | NEW |