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

Side by Side Diff: android_webview/native/aw_http_auth_handler.h

Issue 893343002: Update {virtual,override,final} to follow C++11 style. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 10 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_NATIVE_AW_HTTP_AUTH_HANDLER_H_ 5 #ifndef ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_
6 #define ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_ 6 #define ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_
7 7
8 #include <jni.h> 8 #include <jni.h>
9 #include <string> 9 #include <string>
10 10
(...skipping 14 matching lines...) Expand all
25 namespace android_webview { 25 namespace android_webview {
26 26
27 // Native class for Java class of same name and owns an instance 27 // Native class for Java class of same name and owns an instance
28 // of that Java object. 28 // of that Java object.
29 // One instance of this class is created per underlying AwLoginDelegate. 29 // One instance of this class is created per underlying AwLoginDelegate.
30 class AwHttpAuthHandler : public AwHttpAuthHandlerBase { 30 class AwHttpAuthHandler : public AwHttpAuthHandlerBase {
31 public: 31 public:
32 AwHttpAuthHandler(AwLoginDelegate* login_delegate, 32 AwHttpAuthHandler(AwLoginDelegate* login_delegate,
33 net::AuthChallengeInfo* auth_info, 33 net::AuthChallengeInfo* auth_info,
34 bool first_auth_attempt); 34 bool first_auth_attempt);
35 virtual ~AwHttpAuthHandler(); 35 ~AwHttpAuthHandler() override;
36 36
37 // from AwHttpAuthHandler 37 // from AwHttpAuthHandler
38 virtual bool HandleOnUIThread(content::WebContents* web_contents) override; 38 bool HandleOnUIThread(content::WebContents* web_contents) override;
39 39
40 void Proceed(JNIEnv* env, jobject obj, jstring username, jstring password); 40 void Proceed(JNIEnv* env, jobject obj, jstring username, jstring password);
41 void Cancel(JNIEnv* env, jobject obj); 41 void Cancel(JNIEnv* env, jobject obj);
42 42
43 private: 43 private:
44 scoped_refptr<AwLoginDelegate> login_delegate_; 44 scoped_refptr<AwLoginDelegate> login_delegate_;
45 base::android::ScopedJavaGlobalRef<jobject> http_auth_handler_; 45 base::android::ScopedJavaGlobalRef<jobject> http_auth_handler_;
46 std::string host_; 46 std::string host_;
47 std::string realm_; 47 std::string realm_;
48 }; 48 };
49 49
50 bool RegisterAwHttpAuthHandler(JNIEnv* env); 50 bool RegisterAwHttpAuthHandler(JNIEnv* env);
51 51
52 } // namespace android_webview 52 } // namespace android_webview
53 53
54 #endif // ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_ 54 #endif // ANDROID_WEBVIEW_NATIVE_AW_HTTP_AUTH_HANDLER_H_
OLDNEW
« no previous file with comments | « android_webview/native/aw_dev_tools_server.cc ('k') | android_webview/native/aw_media_url_interceptor.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698