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

Unified Diff: net/base/cert_test_util.h

Issue 13006020: net: extract net/cert out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 7 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/base/cert_status_flags.cc ('k') | net/base/cert_test_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/base/cert_test_util.h
diff --git a/net/base/cert_test_util.h b/net/base/cert_test_util.h
deleted file mode 100644
index db49e87327c8ea431e582ff803398f5933a825e1..0000000000000000000000000000000000000000
--- a/net/base/cert_test_util.h
+++ /dev/null
@@ -1,53 +0,0 @@
-// Copyright (c) 2012 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_BASE_CERT_TEST_UTIL_H_
-#define NET_BASE_CERT_TEST_UTIL_H_
-
-#include <string>
-
-#include "base/memory/ref_counted.h"
-#include "net/base/x509_cert_types.h"
-#include "net/base/x509_certificate.h"
-
-namespace base {
-class FilePath;
-}
-
-namespace net {
-
-class EVRootCAMetadata;
-
-CertificateList CreateCertificateListFromFile(const base::FilePath& certs_dir,
- const std::string& cert_file,
- int format);
-
-// Imports a certificate file in the directory net::GetTestCertsDirectory()
-// returns.
-// |certs_dir| represents the test certificates directory. |cert_file| is the
-// name of the certificate file. If cert_file contains multiple certificates,
-// the first certificate found will be returned.
-scoped_refptr<X509Certificate> ImportCertFromFile(const base::FilePath& certs_dir,
- const std::string& cert_file);
-
-// ScopedTestEVPolicy causes certificates marked with |policy|, issued from a
-// root with the given fingerprint, to be treated as EV. |policy| is expressed
-// as a string of dotted numbers: i.e. "1.2.3.4".
-// This should only be used in unittests as adding a CA twice causes a CHECK
-// failure.
-class ScopedTestEVPolicy {
- public:
- ScopedTestEVPolicy(EVRootCAMetadata* ev_root_ca_metadata,
- const SHA1HashValue& fingerprint,
- const char* policy);
- ~ScopedTestEVPolicy();
-
- private:
- SHA1HashValue fingerprint_;
- EVRootCAMetadata* const ev_root_ca_metadata_;
-};
-
-} // namespace net
-
-#endif // NET_BASE_CERT_TEST_UTIL_H_
« no previous file with comments | « net/base/cert_status_flags.cc ('k') | net/base/cert_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698