OLD | NEW |
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 #ifndef NET_BASE_X509_UTIL_H_ | 5 #ifndef NET_CERT_X509_UTIL_H_ |
6 #define NET_BASE_X509_UTIL_H_ | 6 #define NET_CERT_X509_UTIL_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
11 #include "base/time.h" | 11 #include "base/time.h" |
12 #include "net/base/net_export.h" | 12 #include "net/base/net_export.h" |
13 | 13 |
14 namespace crypto { | 14 namespace crypto { |
15 class ECPrivateKey; | 15 class ECPrivateKey; |
16 } | 16 } |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
63 const scoped_refptr<X509Certificate>& b) const; | 63 const scoped_refptr<X509Certificate>& b) const; |
64 | 64 |
65 private: | 65 private: |
66 base::Time now_; | 66 base::Time now_; |
67 }; | 67 }; |
68 | 68 |
69 } // namespace x509_util | 69 } // namespace x509_util |
70 | 70 |
71 } // namespace net | 71 } // namespace net |
72 | 72 |
73 #endif // NET_BASE_X509_UTIL_H_ | 73 #endif // NET_CERT_X509_UTIL_H_ |
OLD | NEW |