Home | History | Annotate | Download | only in cert
      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
      3 // found in the LICENSE file.
      4 
      5 #include "net/cert/cert_verifier.h"
      6 
      7 #include "net/cert/cert_verify_proc.h"
      8 #include "net/cert/multi_threaded_cert_verifier.h"
      9 
     10 namespace net {
     11 
     12 CertVerifier* CertVerifier::CreateDefault() {
     13   return new MultiThreadedCertVerifier(CertVerifyProc::CreateDefault());
     14 }
     15 
     16 }  // namespace net
     17