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

Unified Diff: android_webview/browser/aw_login_delegate.cc

Issue 16907002: Update Android to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 7 years, 6 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
Index: android_webview/browser/aw_login_delegate.cc
diff --git a/android_webview/browser/aw_login_delegate.cc b/android_webview/browser/aw_login_delegate.cc
index c2ea5a410b3b90981c72b547581b9dafb00713da..2c7325339a430b13dfa5798cb5193c3eddce47a1 100644
--- a/android_webview/browser/aw_login_delegate.cc
+++ b/android_webview/browser/aw_login_delegate.cc
@@ -85,7 +85,7 @@ void AwLoginDelegate::HandleHttpAuthRequestOnUIThread(
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
aw_http_auth_handler_.reset(AwHttpAuthHandlerBase::Create(
- this, auth_info_, first_auth_attempt));
+ this, auth_info_.get(), first_auth_attempt));
RenderViewHost* render_view_host = RenderViewHost::FromID(
render_process_id_, render_view_id_);

Powered by Google App Engine
This is Rietveld 408576698