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

Side by Side Diff: net/cert/cert_verify_proc_unittest.cc

Issue 13006020: net: extract net/cert out of net/base (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/base/cert_verify_proc.h" 5 #include "net/cert/cert_verify_proc.h"
6 6
7 #include <vector> 7 #include <vector>
8 8
9 #include "base/files/file_path.h" 9 #include "base/files/file_path.h"
10 #include "base/logging.h" 10 #include "base/logging.h"
11 #include "base/sha1.h" 11 #include "base/sha1.h"
12 #include "base/string_number_conversions.h" 12 #include "base/string_number_conversions.h"
13 #include "net/base/asn1_util.h"
14 #include "net/base/cert_status_flags.h"
15 #include "net/base/cert_test_util.h"
16 #include "net/base/cert_verifier.h"
17 #include "net/base/cert_verify_result.h"
18 #include "net/base/crl_set.h"
19 #include "net/base/net_errors.h" 13 #include "net/base/net_errors.h"
20 #include "net/base/test_certificate_data.h"
21 #include "net/base/test_data_directory.h" 14 #include "net/base/test_data_directory.h"
22 #include "net/base/test_root_certs.h" 15 #include "net/cert/asn1_util.h"
23 #include "net/base/x509_certificate.h" 16 #include "net/cert/cert_status_flags.h"
17 #include "net/cert/cert_verifier.h"
18 #include "net/cert/cert_verify_result.h"
19 #include "net/cert/crl_set.h"
20 #include "net/cert/x509_certificate.h"
21 #include "net/test/cert_test_util.h"
22 #include "net/test/test_certificate_data.h"
23 #include "net/test/test_root_certs.h"
24 #include "testing/gtest/include/gtest/gtest.h" 24 #include "testing/gtest/include/gtest/gtest.h"
25 25
26 #if defined(OS_WIN) 26 #if defined(OS_WIN)
27 #include "base/win/windows_version.h" 27 #include "base/win/windows_version.h"
28 #elif defined(OS_MACOSX) && !defined(OS_IOS) 28 #elif defined(OS_MACOSX) && !defined(OS_IOS)
29 #include "base/mac/mac_util.h" 29 #include "base/mac/mac_util.h"
30 #endif 30 #endif
31 31
32 using base::HexEncode; 32 using base::HexEncode;
33 33
(...skipping 1025 matching lines...) Expand 10 before | Expand all | Expand 10 after
1059 #define MAYBE_VerifyMixed DISABLED_VerifyMixed 1059 #define MAYBE_VerifyMixed DISABLED_VerifyMixed
1060 #else 1060 #else
1061 #define MAYBE_VerifyMixed VerifyMixed 1061 #define MAYBE_VerifyMixed VerifyMixed
1062 #endif 1062 #endif
1063 WRAPPED_INSTANTIATE_TEST_CASE_P( 1063 WRAPPED_INSTANTIATE_TEST_CASE_P(
1064 MAYBE_VerifyMixed, 1064 MAYBE_VerifyMixed,
1065 CertVerifyProcWeakDigestTest, 1065 CertVerifyProcWeakDigestTest,
1066 testing::ValuesIn(kVerifyMixedTestData)); 1066 testing::ValuesIn(kVerifyMixedTestData));
1067 1067
1068 } // namespace net 1068 } // namespace net
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698