Index: android_webview/native/aw_http_auth_handler.cc |
diff --git a/android_webview/native/aw_http_auth_handler.cc b/android_webview/native/aw_http_auth_handler.cc |
index 2f6a8f7635474508e7f3d525d971361cb7c1448a..8bcebbaa28075fcf2b70f2890ea49a07b7f60e67 100644 |
--- a/android_webview/native/aw_http_auth_handler.cc |
+++ b/android_webview/native/aw_http_auth_handler.cc |
@@ -56,12 +56,13 @@ void AwHttpAuthHandler::Cancel(JNIEnv* env, jobject obj) { |
} |
} |
-void AwHttpAuthHandler::HandleOnUIThread(content::WebContents* web_contents) { |
+bool AwHttpAuthHandler::HandleOnUIThread(content::WebContents* web_contents) { |
DCHECK(web_contents); |
DCHECK(content::BrowserThread::CurrentlyOn(content::BrowserThread::UI)); |
AwContents* aw_contents = AwContents::FromWebContents(web_contents); |
- aw_contents->OnReceivedHttpAuthRequest(http_auth_handler_, host_, realm_); |
+ return aw_contents->OnReceivedHttpAuthRequest(http_auth_handler_, host_, |
+ realm_); |
} |
// static |