OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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/cert/ct_known_logs.h" | 5 #include "net/cert/ct_known_logs.h" |
6 | 6 |
7 #include <stddef.h> | 7 #include <stddef.h> |
8 #include <string.h> | 8 #include <string.h> |
9 | 9 |
10 #include <algorithm> | 10 #include <algorithm> |
(...skipping 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
85 return false; | 85 return false; |
86 } | 86 } |
87 | 87 |
88 *disqualification_date = base::Time::UnixEpoch() + p->disqualification_date; | 88 *disqualification_date = base::Time::UnixEpoch() + p->disqualification_date; |
89 return true; | 89 return true; |
90 } | 90 } |
91 | 91 |
92 } // namespace ct | 92 } // namespace ct |
93 | 93 |
94 } // namespace net | 94 } // namespace net |
95 | |
OLD | NEW |