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

Unified Diff: android_webview/native/aw_contents_client_bridge.cc

Issue 631313003: Remove implicit conversions from scoped_refptr to T* in android_webview/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: android_webview/native/aw_contents_client_bridge.cc
diff --git a/android_webview/native/aw_contents_client_bridge.cc b/android_webview/native/aw_contents_client_bridge.cc
index f5bccdffd86bc6a5b25f4c1c3d1df2e9796dc373..9d6860378e57ef682ec8a46d01ff367b9f225252 100644
--- a/android_webview/native/aw_contents_client_bridge.cc
+++ b/android_webview/native/aw_contents_client_bridge.cc
@@ -379,7 +379,7 @@ void AwContentsClientBridge::HandleErrorInClientCertificateResponse(
int request_id) {
SelectCertificateCallback* callback =
pending_client_cert_request_callbacks_.Lookup(request_id);
- callback->Run(scoped_refptr<net::X509Certificate>());
+ callback->Run(nullptr);
pending_client_cert_request_callbacks_.Remove(request_id);
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698