| 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_CERT_X509_UTIL_H_ | 5 #ifndef NET_CERT_X509_UTIL_H_ |
| 6 #define NET_CERT_X509_UTIL_H_ | 6 #define NET_CERT_X509_UTIL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 |
| 9 #include <string> | 10 #include <string> |
| 10 | 11 |
| 11 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 13 #include "base/time/time.h" | 14 #include "base/time/time.h" |
| 14 #include "net/base/net_export.h" | 15 #include "net/base/net_export.h" |
| 15 | 16 |
| 16 namespace crypto { | 17 namespace crypto { |
| 17 class ECPrivateKey; | 18 class ECPrivateKey; |
| 18 class RSAPrivateKey; | 19 class RSAPrivateKey; |
| (...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 86 | 87 |
| 87 private: | 88 private: |
| 88 base::Time now_; | 89 base::Time now_; |
| 89 }; | 90 }; |
| 90 | 91 |
| 91 } // namespace x509_util | 92 } // namespace x509_util |
| 92 | 93 |
| 93 } // namespace net | 94 } // namespace net |
| 94 | 95 |
| 95 #endif // NET_CERT_X509_UTIL_H_ | 96 #endif // NET_CERT_X509_UTIL_H_ |
| OLD | NEW |