REVIEW: setup request context for NSS OCSP only once

This commit is contained in:
deepak1556 2017-12-18 17:27:20 +05:30 committed by Cheng Zhao
parent e3a56240c9
commit abe1faea5c
6 changed files with 95 additions and 11 deletions

View file

@ -0,0 +1,37 @@
// Copyright (c) 2017 GitHub, Inc.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.
#ifndef BRIGHTRAY_BROWSER_IO_THREAD_H_
#define BRIGHTRAY_BROWSER_IO_THREAD_H_
#include <memory>
#include "base/macros.h"
#include "content/public/browser/browser_thread_delegate.h"
namespace net {
class URLRequestContext;
}
namespace brightray {
class IOThread : public content::BrowserThreadDelegate {
public:
IOThread();
~IOThread() override;
protected:
// BrowserThreadDelegate Implementation, runs on the IO thread.
void Init() override;
void CleanUp() override;
private:
std::unique_ptr<net::URLRequestContext> url_request_context_;
DISALLOW_COPY_AND_ASSIGN(IOThread);
};
} // namespace brightray
#endif // BRIGHTRAY_BROWSER_IO_THREAD_H_