| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" | 5 #include "chrome/browser/chromeos/net/cert_verify_proc_chromeos.h" |
| 6 | 6 |
| 7 #include "crypto/nss_util.h" | |
| 8 #include "crypto/nss_util_internal.h" | 7 #include "crypto/nss_util_internal.h" |
| 8 #include "crypto/scoped_test_nss_chromeos_user.h" |
| 9 #include "net/base/net_errors.h" | 9 #include "net/base/net_errors.h" |
| 10 #include "net/base/test_data_directory.h" | 10 #include "net/base/test_data_directory.h" |
| 11 #include "net/cert/cert_verify_proc.h" | 11 #include "net/cert/cert_verify_proc.h" |
| 12 #include "net/cert/cert_verify_result.h" | 12 #include "net/cert/cert_verify_result.h" |
| 13 #include "net/cert/nss_cert_database_chromeos.h" | 13 #include "net/cert/nss_cert_database_chromeos.h" |
| 14 #include "net/test/cert_test_util.h" | 14 #include "net/test/cert_test_util.h" |
| 15 #include "testing/gtest/include/gtest/gtest.h" | 15 #include "testing/gtest/include/gtest/gtest.h" |
| 16 | 16 |
| 17 namespace chromeos { | 17 namespace chromeos { |
| 18 | 18 |
| (...skipping 354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 373 | 373 |
| 374 INSTANTIATE_TEST_CASE_P( | 374 INSTANTIATE_TEST_CASE_P( |
| 375 Variations, | 375 Variations, |
| 376 CertVerifyProcChromeOSOrderingTest, | 376 CertVerifyProcChromeOSOrderingTest, |
| 377 ::testing::Combine( | 377 ::testing::Combine( |
| 378 ::testing::Bool(), | 378 ::testing::Bool(), |
| 379 ::testing::Range(0, 1 << 2), | 379 ::testing::Range(0, 1 << 2), |
| 380 ::testing::Values("d12", "d21", "1d2", "12d", "2d1", "21d"))); | 380 ::testing::Values("d12", "d21", "1d2", "12d", "2d1", "21d"))); |
| 381 | 381 |
| 382 } // namespace chromeos | 382 } // namespace chromeos |
| OLD | NEW |