| Index: ios/chrome/browser/ios_chrome_io_thread.mm
|
| diff --git a/ios/chrome/browser/ios_chrome_io_thread.mm b/ios/chrome/browser/ios_chrome_io_thread.mm
|
| index 763c0280813c3b0d6b298cc44c1a14e00c452339..a1755ece374854f91f359ffb80b4986188ddd204 100644
|
| --- a/ios/chrome/browser/ios_chrome_io_thread.mm
|
| +++ b/ios/chrome/browser/ios_chrome_io_thread.mm
|
| @@ -146,17 +146,11 @@ const char kSpdyDepencenciesFieldTrialDisable[] = "Disable";
|
| class SystemURLRequestContext : public net::URLRequestContext {
|
| public:
|
| SystemURLRequestContext() {
|
| -#if defined(USE_NSS_VERIFIER)
|
| - net::SetURLRequestContextForNSSHttpIO(this);
|
| -#endif
|
| }
|
|
|
| private:
|
| ~SystemURLRequestContext() override {
|
| AssertNoURLRequests();
|
| -#if defined(USE_NSS_VERIFIER)
|
| - net::SetURLRequestContextForNSSHttpIO(nullptr);
|
| -#endif
|
| }
|
| };
|
|
|
| @@ -389,10 +383,6 @@ void IOSChromeIOThread::Init() {
|
| TRACE_EVENT0("startup", "IOSChromeIOThread::Init");
|
| DCHECK_CURRENTLY_ON(web::WebThread::IO);
|
|
|
| -#if defined(USE_NSS_VERIFIER)
|
| - net::SetMessageLoopForNSSHttpIO();
|
| -#endif
|
| -
|
| const base::CommandLine& command_line =
|
| *base::CommandLine::ForCurrentProcess();
|
|
|
| @@ -491,10 +481,6 @@ void IOSChromeIOThread::Init() {
|
| }
|
|
|
| void IOSChromeIOThread::CleanUp() {
|
| -#if defined(USE_NSS_VERIFIER)
|
| - net::ShutdownNSSHttpIO();
|
| -#endif
|
| -
|
| system_url_request_context_getter_ = nullptr;
|
|
|
| // Release objects that the net::URLRequestContext could have been pointing
|
|
|