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

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

Issue 1852513003: Convert //android_webview to use std::unique_ptr (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: git is hard Created 4 years, 8 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
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 <memory>
9
8 #include "android_webview/browser/aw_http_auth_handler_base.h" 10 #include "android_webview/browser/aw_http_auth_handler_base.h"
9 #include "base/memory/ref_counted.h" 11 #include "base/memory/ref_counted.h"
10 #include "base/memory/scoped_ptr.h"
11 #include "base/strings/string16.h" 12 #include "base/strings/string16.h"
12 #include "content/public/browser/resource_dispatcher_host_login_delegate.h" 13 #include "content/public/browser/resource_dispatcher_host_login_delegate.h"
13 14
14 namespace net { 15 namespace net {
15 class AuthChallengeInfo; 16 class AuthChallengeInfo;
16 class URLRequest; 17 class URLRequest;
17 } 18 }
18 19
19 namespace android_webview { 20 namespace android_webview {
20 21
(...skipping 11 matching lines...) Expand all
32 void OnRequestCancelled() override; 33 void OnRequestCancelled() override;
33 34
34 private: 35 private:
35 ~AwLoginDelegate() override; 36 ~AwLoginDelegate() override;
36 void HandleHttpAuthRequestOnUIThread(bool first_auth_attempt); 37 void HandleHttpAuthRequestOnUIThread(bool first_auth_attempt);
37 void CancelOnIOThread(); 38 void CancelOnIOThread();
38 void ProceedOnIOThread(const base::string16& user, 39 void ProceedOnIOThread(const base::string16& user,
39 const base::string16& password); 40 const base::string16& password);
40 void DeleteAuthHandlerSoon(); 41 void DeleteAuthHandlerSoon();
41 42
42 scoped_ptr<AwHttpAuthHandlerBase> aw_http_auth_handler_; 43 std::unique_ptr<AwHttpAuthHandlerBase> aw_http_auth_handler_;
43 scoped_refptr<net::AuthChallengeInfo> auth_info_; 44 scoped_refptr<net::AuthChallengeInfo> auth_info_;
44 net::URLRequest* request_; 45 net::URLRequest* request_;
45 int render_process_id_; 46 int render_process_id_;
46 int render_frame_id_; 47 int render_frame_id_;
47 }; 48 };
48 49
49 } // namespace android_webview 50 } // namespace android_webview
50 51
51 #endif // ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_ 52 #endif // ANDROID_WEBVIEW_BROWSER_AW_LOGIN_DELEGATE_H_
OLDNEW
« no previous file with comments | « android_webview/browser/aw_form_database_service_unittest.cc ('k') | android_webview/browser/aw_metrics_service_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698