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

Unified Diff: net/base/ssl_info.h

Issue 11275088: Remove implicit scoped_refptr operator T* Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 8 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 | « net/base/server_bound_cert_service_unittest.cc ('k') | net/base/tcp_listen_socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/ssl_info.h
diff --git a/net/base/ssl_info.h b/net/base/ssl_info.h
index 25019a269934bd2c8dce596bc2b317891e854c4b..6eaba89f034470f820b2b59dd7560fc58da07602 100644
--- a/net/base/ssl_info.h
+++ b/net/base/ssl_info.h
@@ -35,7 +35,7 @@ class NET_EXPORT SSLInfo {
void Reset();
- bool is_valid() const { return cert != NULL; }
+ bool is_valid() const { return cert.get() != NULL; }
// Adds the specified |error| to the cert status.
void SetCertError(int error);
« no previous file with comments | « net/base/server_bound_cert_service_unittest.cc ('k') | net/base/tcp_listen_socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698