Updating trunk VERSION from 2139.0 to 2140.0
[chromium-blink-merge.git] / content / shell / browser / shell_resource_dispatcher_host_delegate.h
blobb946201edeb0d160f2b85c89c615a7daddd2a39f
1 // Copyright 2013 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_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
8 #include "base/callback.h"
9 #include "base/compiler_specific.h"
10 #include "content/public/browser/resource_dispatcher_host_delegate.h"
12 namespace content {
14 class ShellResourceDispatcherHostDelegate
15 : public ResourceDispatcherHostDelegate {
16 public:
17 ShellResourceDispatcherHostDelegate();
18 virtual ~ShellResourceDispatcherHostDelegate();
20 // ResourceDispatcherHostDelegate implementation.
21 virtual ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
22 net::AuthChallengeInfo* auth_info, net::URLRequest* request) OVERRIDE;
24 // Used for content_browsertests.
25 void set_login_request_callback(
26 base::Callback<void()> login_request_callback) {
27 login_request_callback_ = login_request_callback;
30 private:
31 base::Callback<void()> login_request_callback_;
33 DISALLOW_COPY_AND_ASSIGN(ShellResourceDispatcherHostDelegate);
36 } // namespace content
38 #endif // CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_