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

Unified Diff: net/cert/cert_verify_proc_builtin.h

Issue 2755483008: Add initial CertVerifyProcBuiltin. (Closed)
Patch Set: type notimplemented properly Created 3 years, 9 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/BUILD.gn ('k') | net/cert/cert_verify_proc_builtin.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/cert/cert_verify_proc_builtin.h
diff --git a/net/cert/cert_verify_proc_builtin.h b/net/cert/cert_verify_proc_builtin.h
new file mode 100644
index 0000000000000000000000000000000000000000..63bfc2cae73dde7c35746d4549dd2450973b9541
--- /dev/null
+++ b/net/cert/cert_verify_proc_builtin.h
@@ -0,0 +1,22 @@
+// Copyright (c) 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef NET_CERT_CERT_VERIFY_PROC_BUILTIN_H_
+#define NET_CERT_CERT_VERIFY_PROC_BUILTIN_H_
+
+#include "base/memory/ref_counted.h"
+#include "net/base/net_export.h"
+
+namespace net {
+
+class CertVerifyProc;
+
+// TODO(crbug.com/649017): This is not how other cert_verify_proc_*.h are
+// implemented -- they expose the type in the header. Use a consistent style
+// here too.
+NET_EXPORT scoped_refptr<CertVerifyProc> CreateCertVerifyProcBuiltin();
+
+} // namespace net
+
+#endif // NET_CERT_CERT_VERIFY_PROC_BUILTIN_H_
« no previous file with comments | « net/BUILD.gn ('k') | net/cert/cert_verify_proc_builtin.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698