Browse Source

No longer save the IO message loop in net::EnsureNSSHttpIOInit

https://chromium-review.googlesource.com/c/chromium/src/+/963762
deepak1556 6 years ago
parent
commit
67f6e21bd2
1 changed files with 0 additions and 2 deletions
  1. 0 2
      brightray/browser/io_thread.cc

+ 0 - 2
brightray/browser/io_thread.cc

@@ -36,14 +36,12 @@ void IOThread::Init() {
   url_request_context_getter_->AddRef();
 
 #if defined(USE_NSS_CERTS)
-  net::SetMessageLoopForNSSHttpIO();
   net::SetURLRequestContextForNSSHttpIO(url_request_context_.get());
 #endif
 }
 
 void IOThread::CleanUp() {
 #if defined(USE_NSS_CERTS)
-  net::ShutdownNSSHttpIO();
   net::SetURLRequestContextForNSSHttpIO(nullptr);
 #endif
   // Explicitly release before the IO thread gets destroyed.