OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "content/shell/browser/layout_test/layout_test_resource_dispatcher_host
_delegate.h" |
| 6 |
| 7 #include "base/command_line.h" |
| 8 #include "content/shell/common/shell_switches.h" |
| 9 |
| 10 namespace content { |
| 11 |
| 12 LayoutTestResourceDispatcherHostDelegate:: |
| 13 LayoutTestResourceDispatcherHostDelegate() { |
| 14 } |
| 15 |
| 16 LayoutTestResourceDispatcherHostDelegate:: |
| 17 ~LayoutTestResourceDispatcherHostDelegate() { |
| 18 } |
| 19 |
| 20 ResourceDispatcherHostLoginDelegate* |
| 21 LayoutTestResourceDispatcherHostDelegate::CreateLoginDelegate( |
| 22 net::AuthChallengeInfo* auth_info, net::URLRequest* request) { |
| 23 return NULL; |
| 24 } |
| 25 |
| 26 } // namespace content |
OLD | NEW |