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

Unified Diff: net/cert/cert_verifier.h

Issue 1290243007: Shift URLRequestContextStorage over to taking scoped_ptrs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@Paul_BuilderGrab
Patch Set: Lots of fixes driven by try jobs. Created 5 years, 4 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: net/cert/cert_verifier.h
diff --git a/net/cert/cert_verifier.h b/net/cert/cert_verifier.h
index 6e5eac98e4fa0152cffdf1cc208682c9d17c28a0..64f4a86ac9198d8d7c62c79de56bef9f89e5bef5 100644
--- a/net/cert/cert_verifier.h
+++ b/net/cert/cert_verifier.h
@@ -8,6 +8,7 @@
#include <string>
#include "base/macros.h"
+#include "base/memory/scoped_ptr.h"
#include "net/base/completion_callback.h"
#include "net/base/net_export.h"
@@ -128,7 +129,7 @@ class NET_EXPORT CertVerifier {
// Creates a CertVerifier implementation that verifies certificates using
// the preferred underlying cryptographic libraries.
- static CertVerifier* CreateDefault();
+ static scoped_ptr<CertVerifier> CreateDefault();
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698