Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(318)

Side by Side Diff: net/quic/chromium/crypto/proof_verifier_chromium.cc

Issue 2193073003: Move shared files in net/quic/ into net/quic/core/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: io_thread_unittest.cc Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/quic/chromium/crypto/proof_verifier_chromium.h" 5 #include "net/quic/chromium/crypto/proof_verifier_chromium.h"
6 6
7 #include <utility> 7 #include <utility>
8 8
9 #include "base/bind.h" 9 #include "base/bind.h"
10 #include "base/bind_helpers.h" 10 #include "base/bind_helpers.h"
11 #include "base/callback_helpers.h" 11 #include "base/callback_helpers.h"
12 #include "base/logging.h" 12 #include "base/logging.h"
13 #include "base/metrics/histogram_macros.h" 13 #include "base/metrics/histogram_macros.h"
14 #include "base/stl_util.h" 14 #include "base/stl_util.h"
15 #include "base/strings/stringprintf.h" 15 #include "base/strings/stringprintf.h"
16 #include "crypto/signature_verifier.h" 16 #include "crypto/signature_verifier.h"
17 #include "net/base/host_port_pair.h" 17 #include "net/base/host_port_pair.h"
18 #include "net/base/net_errors.h" 18 #include "net/base/net_errors.h"
19 #include "net/cert/asn1_util.h" 19 #include "net/cert/asn1_util.h"
20 #include "net/cert/cert_status_flags.h" 20 #include "net/cert/cert_status_flags.h"
21 #include "net/cert/cert_verifier.h" 21 #include "net/cert/cert_verifier.h"
22 #include "net/cert/ct_policy_enforcer.h" 22 #include "net/cert/ct_policy_enforcer.h"
23 #include "net/cert/ct_policy_status.h" 23 #include "net/cert/ct_policy_status.h"
24 #include "net/cert/ct_verifier.h" 24 #include "net/cert/ct_verifier.h"
25 #include "net/cert/x509_util.h" 25 #include "net/cert/x509_util.h"
26 #include "net/http/transport_security_state.h" 26 #include "net/http/transport_security_state.h"
27 #include "net/quic/crypto/crypto_protocol.h" 27 #include "net/quic/core/crypto/crypto_protocol.h"
28 #include "net/ssl/ssl_config_service.h" 28 #include "net/ssl/ssl_config_service.h"
29 29
30 using base::StringPiece; 30 using base::StringPiece;
31 using base::StringPrintf; 31 using base::StringPrintf;
32 using std::string; 32 using std::string;
33 using std::vector; 33 using std::vector;
34 34
35 namespace net { 35 namespace net {
36 36
37 ProofVerifyDetailsChromium::ProofVerifyDetailsChromium() 37 ProofVerifyDetailsChromium::ProofVerifyDetailsChromium()
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 } 510 }
511 return status; 511 return status;
512 } 512 }
513 513
514 void ProofVerifierChromium::OnJobComplete(Job* job) { 514 void ProofVerifierChromium::OnJobComplete(Job* job) {
515 active_jobs_.erase(job); 515 active_jobs_.erase(job);
516 delete job; 516 delete job;
517 } 517 }
518 518
519 } // namespace net 519 } // namespace net
OLDNEW
« no previous file with comments | « net/quic/chromium/crypto/proof_verifier_chromium.h ('k') | net/quic/chromium/crypto/proof_verifier_chromium_test.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698