Roll src/third_party/skia 2440fcd:4de8c3a
[chromium-blink-merge.git] / content / shell / browser / layout_test / layout_test_resource_dispatcher_host_delegate.h
blobc8735a3b05e221ce2e41d7e8d08a5278151fc8c5
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.
5 #ifndef CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
6 #define CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
8 #include "base/callback.h"
9 #include "base/compiler_specific.h"
10 #include "content/shell/browser/shell_resource_dispatcher_host_delegate.h"
12 namespace content {
14 class LayoutTestResourceDispatcherHostDelegate
15 : public ShellResourceDispatcherHostDelegate {
16 public:
17 LayoutTestResourceDispatcherHostDelegate();
18 ~LayoutTestResourceDispatcherHostDelegate() override;
20 // ResourceDispatcherHostDelegate implementation.
21 ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
22 net::AuthChallengeInfo* auth_info,
23 net::URLRequest* request) override;
25 private:
26 DISALLOW_COPY_AND_ASSIGN(LayoutTestResourceDispatcherHostDelegate);
29 } // namespace content
31 #endif // CONTENT_SHELL_BROWSER_LAYOUT_TEST_LAYOUT_TEST_RESOURCE_DISPATCHER_HOST_DELEGATE_H_