| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/quic/core/crypto/common_cert_set.h" | 5 #include "net/quic/core/crypto/common_cert_set.h" |
| 6 | 6 |
| 7 #include <cstddef> | 7 #include <cstddef> |
| 8 | 8 |
| 9 #include "base/logging.h" | |
| 10 #include "base/macros.h" | 9 #include "base/macros.h" |
| 11 #include "base/memory/singleton.h" | 10 #include "base/memory/singleton.h" |
| 12 #include "net/quic/core/quic_utils.h" | 11 #include "net/quic/core/quic_utils.h" |
| 13 | 12 |
| 14 using base::StringPiece; | 13 using base::StringPiece; |
| 15 | 14 |
| 16 namespace net { | 15 namespace net { |
| 17 | 16 |
| 18 namespace common_cert_set_2 { | 17 namespace common_cert_set_2 { |
| 19 #include "net/quic/core/crypto/common_cert_set_2.c" | 18 #include "net/quic/core/crypto/common_cert_set_2.c" |
| (...skipping 139 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 } // anonymous namespace | 158 } // anonymous namespace |
| 160 | 159 |
| 161 CommonCertSets::~CommonCertSets() {} | 160 CommonCertSets::~CommonCertSets() {} |
| 162 | 161 |
| 163 // static | 162 // static |
| 164 const CommonCertSets* CommonCertSets::GetInstanceQUIC() { | 163 const CommonCertSets* CommonCertSets::GetInstanceQUIC() { |
| 165 return CommonCertSetsQUIC::GetInstance(); | 164 return CommonCertSetsQUIC::GetInstance(); |
| 166 } | 165 } |
| 167 | 166 |
| 168 } // namespace net | 167 } // namespace net |
| OLD | NEW |