Browse Source

Merge pull request #5009 from deepak1556/context_creation_patch

browser: create cert verifier when browser context is created
Cheng Zhao 9 years ago
parent
commit
7d3f8cb222
1 changed files with 1 additions and 3 deletions
  1. 1 3
      atom/browser/atom_browser_context.cc

+ 1 - 3
atom/browser/atom_browser_context.cc

@@ -65,7 +65,7 @@ std::string RemoveWhitespace(const std::string& str) {
 AtomBrowserContext::AtomBrowserContext(const std::string& partition,
                                        bool in_memory)
     : brightray::BrowserContext(partition, in_memory),
-      cert_verifier_(nullptr),
+      cert_verifier_(new AtomCertVerifier),
       job_factory_(new AtomURLRequestJobFactory),
       network_delegate_(new AtomNetworkDelegate),
       allow_ntlm_everywhere_(false) {
@@ -178,8 +178,6 @@ content::PermissionManager* AtomBrowserContext::GetPermissionManager() {
 }
 
 scoped_ptr<net::CertVerifier> AtomBrowserContext::CreateCertVerifier() {
-  DCHECK(!cert_verifier_);
-  cert_verifier_ = new AtomCertVerifier;
   return make_scoped_ptr(cert_verifier_);
 }