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

Side by Side Diff: android_webview/browser/aw_login_delegate.h

Issue 10918248: Added virtual destructor. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 3 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 (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 #ifndef ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_ 5 #ifndef ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_
6 #define ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_ 6 #define ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_
7 7
8 #include "android_webview/browser/aw_http_auth_handler_base.h" 8 #include "android_webview/browser/aw_http_auth_handler_base.h"
9 #include "base/memory/ref_counted.h" 9 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
(...skipping 13 matching lines...) Expand all
24 AwLoginDelegate(net::AuthChallengeInfo* auth_info, 24 AwLoginDelegate(net::AuthChallengeInfo* auth_info,
25 net::URLRequest* request); 25 net::URLRequest* request);
26 26
27 virtual void Proceed(const string16& user, const string16& password); 27 virtual void Proceed(const string16& user, const string16& password);
28 virtual void Cancel(); 28 virtual void Cancel();
29 29
30 // from ResourceDispatcherHostLoginDelegate 30 // from ResourceDispatcherHostLoginDelegate
31 virtual void OnRequestCancelled() OVERRIDE; 31 virtual void OnRequestCancelled() OVERRIDE;
32 32
33 private: 33 private:
34 virtual ~AwLoginDelegate();
34 void HandleHttpAuthRequestOnUIThread(); 35 void HandleHttpAuthRequestOnUIThread();
35 void CancelOnIOThread(); 36 void CancelOnIOThread();
36 void ProceedOnIOThread(const string16& user, const string16& password); 37 void ProceedOnIOThread(const string16& user, const string16& password);
37 38
38 scoped_ptr<AwHttpAuthHandlerBase> aw_http_auth_handler_; 39 scoped_ptr<AwHttpAuthHandlerBase> aw_http_auth_handler_;
39 scoped_refptr<net::AuthChallengeInfo> auth_info_; 40 scoped_refptr<net::AuthChallengeInfo> auth_info_;
40 net::URLRequest* request_; 41 net::URLRequest* request_;
41 int render_process_id_; 42 int render_process_id_;
42 int render_view_id_; 43 int render_view_id_;
43 }; 44 };
44 45
45 } // namespace android_webview 46 } // namespace android_webview
46 47
47 #endif // ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_ 48 #endif // ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_
OLDNEW
« no previous file with comments | « android_webview/browser/aw_http_auth_handler_base.cc ('k') | android_webview/browser/aw_login_delegate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698