| 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_SERVER_BOUND_CERT_SERVICE_H_ | 5 #ifndef NET_SSL_SERVER_BOUND_CERT_SERVICE_H_ |
| 6 #define NET_BASE_SERVER_BOUND_CERT_SERVICE_H_ | 6 #define NET_SSL_SERVER_BOUND_CERT_SERVICE_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| 11 | 11 |
| 12 #include "base/basictypes.h" | 12 #include "base/basictypes.h" |
| 13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
| 14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
| 15 #include "base/threading/non_thread_safe.h" | 15 #include "base/threading/non_thread_safe.h" |
| 16 #include "base/time.h" | 16 #include "base/time.h" |
| 17 #include "net/base/completion_callback.h" | 17 #include "net/base/completion_callback.h" |
| 18 #include "net/base/net_export.h" | 18 #include "net/base/net_export.h" |
| 19 #include "net/base/server_bound_cert_store.h" | 19 #include "net/ssl/server_bound_cert_store.h" |
| 20 #include "net/base/ssl_client_cert_type.h" | 20 #include "net/ssl/ssl_client_cert_type.h" |
| 21 | 21 |
| 22 namespace base { | 22 namespace base { |
| 23 class TaskRunner; | 23 class TaskRunner; |
| 24 } | 24 } |
| 25 | 25 |
| 26 namespace net { | 26 namespace net { |
| 27 | 27 |
| 28 class ServerBoundCertServiceJob; | 28 class ServerBoundCertServiceJob; |
| 29 class ServerBoundCertServiceRequest; | 29 class ServerBoundCertServiceRequest; |
| 30 class ServerBoundCertServiceWorker; | 30 class ServerBoundCertServiceWorker; |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 155 uint64 cert_store_hits_; | 155 uint64 cert_store_hits_; |
| 156 uint64 inflight_joins_; | 156 uint64 inflight_joins_; |
| 157 | 157 |
| 158 bool is_system_time_valid_; | 158 bool is_system_time_valid_; |
| 159 | 159 |
| 160 DISALLOW_COPY_AND_ASSIGN(ServerBoundCertService); | 160 DISALLOW_COPY_AND_ASSIGN(ServerBoundCertService); |
| 161 }; | 161 }; |
| 162 | 162 |
| 163 } // namespace net | 163 } // namespace net |
| 164 | 164 |
| 165 #endif // NET_BASE_SERVER_BOUND_CERT_SERVICE_H_ | 165 #endif // NET_SSL_SERVER_BOUND_CERT_SERVICE_H_ |
| OLD | NEW |