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 #include "net/base/server_bound_cert_service.h" | 5 #include "net/ssl/server_bound_cert_service.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <limits> | 8 #include <limits> |
9 | 9 |
10 #include "base/bind.h" | 10 #include "base/bind.h" |
11 #include "base/bind_helpers.h" | 11 #include "base/bind_helpers.h" |
12 #include "base/callback_helpers.h" | 12 #include "base/callback_helpers.h" |
13 #include "base/compiler_specific.h" | 13 #include "base/compiler_specific.h" |
14 #include "base/location.h" | 14 #include "base/location.h" |
15 #include "base/logging.h" | 15 #include "base/logging.h" |
(...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
654 | 654 |
655 job->HandleResult(error, type, private_key, cert); | 655 job->HandleResult(error, type, private_key, cert); |
656 delete job; | 656 delete job; |
657 } | 657 } |
658 | 658 |
659 int ServerBoundCertService::cert_count() { | 659 int ServerBoundCertService::cert_count() { |
660 return server_bound_cert_store_->GetCertCount(); | 660 return server_bound_cert_store_->GetCertCount(); |
661 } | 661 } |
662 | 662 |
663 } // namespace net | 663 } // namespace net |
OLD | NEW |