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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_http_auth_handler.h
diff --git a/android_webview/native/aw_http_auth_handler.h b/android_webview/native/aw_http_auth_handler.h
index c063702a3e58def6fe250c200113044bb8147ed0..79b7406ec2c6e4521565214bb618320e4717037c 100644
--- a/android_webview/native/aw_http_auth_handler.h
+++ b/android_webview/native/aw_http_auth_handler.h
@@ -32,10 +32,10 @@ class AwHttpAuthHandler : public AwHttpAuthHandlerBase {
AwHttpAuthHandler(AwLoginDelegate* login_delegate,
net::AuthChallengeInfo* auth_info,
bool first_auth_attempt);
- virtual ~AwHttpAuthHandler();
+ ~AwHttpAuthHandler() override;
// from AwHttpAuthHandler
- virtual bool HandleOnUIThread(content::WebContents* web_contents) override;
+ bool HandleOnUIThread(content::WebContents* web_contents) override;
void Proceed(JNIEnv* env, jobject obj, jstring username, jstring password);
void Cancel(JNIEnv* env, jobject obj);
« 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