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

Unified Diff: net/ssl/default_server_bound_cert_store.h

Issue 15829004: Update net/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: license twerk Created 7 years, 7 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/ssl/client_cert_store_impl_unittest.cc ('k') | net/ssl/default_server_bound_cert_store.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/ssl/default_server_bound_cert_store.h
diff --git a/net/ssl/default_server_bound_cert_store.h b/net/ssl/default_server_bound_cert_store.h
index a932959e54df18fbebbb755e9e6b7102ac3fa62b..8ec680562ca71caad11ce429dcc1d7b68c54f829 100644
--- a/net/ssl/default_server_bound_cert_store.h
+++ b/net/ssl/default_server_bound_cert_store.h
@@ -90,7 +90,7 @@ class NET_EXPORT DefaultServerBoundCertStore : public ServerBoundCertStore {
// loading?
void InitIfNecessary() {
if (!initialized_) {
- if (store_) {
+ if (store_.get()) {
InitStore();
} else {
loaded_ = true;
« no previous file with comments | « net/ssl/client_cert_store_impl_unittest.cc ('k') | net/ssl/default_server_bound_cert_store.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698