Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(68)

Side by Side Diff: content/shell/browser/shell_resource_dispatcher_host_delegate.h

Issue 124113003: Remove calls of PrerenderTracker::TryCancel and TryCancelOnIOThread in ChromeResourceDispatcherHost… (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: simplify Created 6 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 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 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 #ifndef CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
6 #define CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 6 #define CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
7 7
8 #include "base/callback.h" 8 #include "base/callback.h"
9 #include "base/compiler_specific.h" 9 #include "base/compiler_specific.h"
10 #include "content/public/browser/resource_dispatcher_host_delegate.h" 10 #include "content/public/browser/resource_dispatcher_host_delegate.h"
11 11
12 namespace content { 12 namespace content {
13 13
14 class ShellResourceDispatcherHostDelegate 14 class ShellResourceDispatcherHostDelegate
15 : public ResourceDispatcherHostDelegate { 15 : public ResourceDispatcherHostDelegate {
16 public: 16 public:
17 ShellResourceDispatcherHostDelegate(); 17 ShellResourceDispatcherHostDelegate();
18 virtual ~ShellResourceDispatcherHostDelegate(); 18 virtual ~ShellResourceDispatcherHostDelegate();
19 19
20 // ResourceDispatcherHostDelegate implementation. 20 // ResourceDispatcherHostDelegate implementation.
21 virtual bool AcceptAuthRequest(net::URLRequest* request,
22 net::AuthChallengeInfo* auth_info) OVERRIDE;
23 virtual ResourceDispatcherHostLoginDelegate* CreateLoginDelegate( 21 virtual ResourceDispatcherHostLoginDelegate* CreateLoginDelegate(
24 net::AuthChallengeInfo* auth_info, net::URLRequest* request) OVERRIDE; 22 net::AuthChallengeInfo* auth_info, net::URLRequest* request) OVERRIDE;
25 23
26 // Used for content_browsertests. 24 // Used for content_browsertests.
27 void set_login_request_callback( 25 void set_login_request_callback(
28 base::Callback<void()> login_request_callback) { 26 base::Callback<void()> login_request_callback) {
29 login_request_callback_ = login_request_callback; 27 login_request_callback_ = login_request_callback;
30 } 28 }
31 29
32 private: 30 private:
33 base::Callback<void()> login_request_callback_; 31 base::Callback<void()> login_request_callback_;
34 32
35 DISALLOW_COPY_AND_ASSIGN(ShellResourceDispatcherHostDelegate); 33 DISALLOW_COPY_AND_ASSIGN(ShellResourceDispatcherHostDelegate);
36 }; 34 };
37 35
38 } // namespace content 36 } // namespace content
39 37
40 #endif // CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_ 38 #endif // CONTENT_SHELL_BROWSER_SHELL_RESOURCE_DISPATCHER_HOST_DELEGATE_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698