Avoid creating our own URLRequestContextGetter.
This commit is contained in:
parent
66ef1a067d
commit
226cbda7a6
10 changed files with 46 additions and 350 deletions
2
atom.gyp
2
atom.gyp
|
@ -117,8 +117,6 @@
|
||||||
'atom/browser/native_window_observer.h',
|
'atom/browser/native_window_observer.h',
|
||||||
'atom/browser/net/adapter_request_job.cc',
|
'atom/browser/net/adapter_request_job.cc',
|
||||||
'atom/browser/net/adapter_request_job.h',
|
'atom/browser/net/adapter_request_job.h',
|
||||||
'atom/browser/net/atom_url_request_context_getter.cc',
|
|
||||||
'atom/browser/net/atom_url_request_context_getter.h',
|
|
||||||
'atom/browser/net/atom_url_request_job_factory.cc',
|
'atom/browser/net/atom_url_request_job_factory.cc',
|
||||||
'atom/browser/net/atom_url_request_job_factory.h',
|
'atom/browser/net/atom_url_request_job_factory.h',
|
||||||
'atom/browser/net/url_request_string_job.cc',
|
'atom/browser/net/url_request_string_job.cc',
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
#include "base/stl_util.h"
|
#include "base/stl_util.h"
|
||||||
#include "atom/browser/atom_browser_context.h"
|
#include "atom/browser/atom_browser_context.h"
|
||||||
#include "atom/browser/net/adapter_request_job.h"
|
#include "atom/browser/net/adapter_request_job.h"
|
||||||
#include "atom/browser/net/atom_url_request_context_getter.h"
|
|
||||||
#include "atom/browser/net/atom_url_request_job_factory.h"
|
#include "atom/browser/net/atom_url_request_job_factory.h"
|
||||||
#include "atom/common/native_mate_converters/file_path_converter.h"
|
#include "atom/common/native_mate_converters/file_path_converter.h"
|
||||||
#include "content/public/browser/browser_thread.h"
|
#include "content/public/browser/browser_thread.h"
|
||||||
|
@ -152,8 +151,8 @@ class CustomProtocolHandler : public ProtocolHandler {
|
||||||
|
|
||||||
} // namespace
|
} // namespace
|
||||||
|
|
||||||
Protocol::Protocol() : job_factory_(
|
Protocol::Protocol()
|
||||||
AtomBrowserContext::Get()->url_request_context_getter()->job_factory()) {
|
: job_factory_(AtomBrowserContext::Get()->job_factory()) {
|
||||||
}
|
}
|
||||||
|
|
||||||
Protocol::JsProtocolHandler Protocol::GetProtocolHandler(
|
Protocol::JsProtocolHandler Protocol::GetProtocolHandler(
|
||||||
|
|
|
@ -7,7 +7,6 @@
|
||||||
#include <utility>
|
#include <utility>
|
||||||
|
|
||||||
#include "atom/browser/atom_browser_context.h"
|
#include "atom/browser/atom_browser_context.h"
|
||||||
#include "atom/browser/net/atom_url_request_context_getter.h"
|
|
||||||
|
|
||||||
#ifndef GOOGLEAPIS_API_KEY
|
#ifndef GOOGLEAPIS_API_KEY
|
||||||
#define GOOGLEAPIS_API_KEY "AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q"
|
#define GOOGLEAPIS_API_KEY "AIzaSyAQfxPJiounkhOjODEO5ZieffeBv6yft2Q"
|
||||||
|
|
|
@ -9,7 +9,6 @@
|
||||||
#include "atom/browser/atom_browser_main_parts.h"
|
#include "atom/browser/atom_browser_main_parts.h"
|
||||||
#include "atom/browser/atom_resource_dispatcher_host_delegate.h"
|
#include "atom/browser/atom_resource_dispatcher_host_delegate.h"
|
||||||
#include "atom/browser/native_window.h"
|
#include "atom/browser/native_window.h"
|
||||||
#include "atom/browser/net/atom_url_request_context_getter.h"
|
|
||||||
#include "atom/browser/window_list.h"
|
#include "atom/browser/window_list.h"
|
||||||
#include "content/public/browser/render_process_host.h"
|
#include "content/public/browser/render_process_host.h"
|
||||||
#include "content/public/browser/render_view_host.h"
|
#include "content/public/browser/render_view_host.h"
|
||||||
|
@ -49,14 +48,6 @@ AtomBrowserClient::AtomBrowserClient()
|
||||||
AtomBrowserClient::~AtomBrowserClient() {
|
AtomBrowserClient::~AtomBrowserClient() {
|
||||||
}
|
}
|
||||||
|
|
||||||
net::URLRequestContextGetter* AtomBrowserClient::CreateRequestContext(
|
|
||||||
content::BrowserContext* browser_context,
|
|
||||||
content::ProtocolHandlerMap* protocol_handlers,
|
|
||||||
content::ProtocolHandlerScopedVector protocol_interceptors) {
|
|
||||||
return static_cast<AtomBrowserContext*>(browser_context)->
|
|
||||||
CreateRequestContext(protocol_handlers);
|
|
||||||
}
|
|
||||||
|
|
||||||
void AtomBrowserClient::ResourceDispatcherHostCreated() {
|
void AtomBrowserClient::ResourceDispatcherHostCreated() {
|
||||||
resource_dispatcher_delegate_.reset(new AtomResourceDispatcherHostDelegate);
|
resource_dispatcher_delegate_.reset(new AtomResourceDispatcherHostDelegate);
|
||||||
content::ResourceDispatcherHost::Get()->SetDelegate(
|
content::ResourceDispatcherHost::Get()->SetDelegate(
|
||||||
|
|
|
@ -20,10 +20,6 @@ class AtomBrowserClient : public brightray::BrowserClient {
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// content::ContentBrowserClient:
|
// content::ContentBrowserClient:
|
||||||
net::URLRequestContextGetter* CreateRequestContext(
|
|
||||||
content::BrowserContext* browser_context,
|
|
||||||
content::ProtocolHandlerMap* protocol_handlers,
|
|
||||||
content::ProtocolHandlerScopedVector protocol_interceptors) OVERRIDE;
|
|
||||||
virtual void ResourceDispatcherHostCreated() OVERRIDE;
|
virtual void ResourceDispatcherHostCreated() OVERRIDE;
|
||||||
virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
|
virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
|
||||||
virtual void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
|
virtual void OverrideWebkitPrefs(content::RenderViewHost* render_view_host,
|
||||||
|
|
|
@ -5,72 +5,55 @@
|
||||||
#include "atom/browser/atom_browser_context.h"
|
#include "atom/browser/atom_browser_context.h"
|
||||||
|
|
||||||
#include "atom/browser/atom_browser_main_parts.h"
|
#include "atom/browser/atom_browser_main_parts.h"
|
||||||
#include "atom/browser/net/atom_url_request_context_getter.h"
|
#include "atom/browser/net/atom_url_request_job_factory.h"
|
||||||
|
#include "base/threading/sequenced_worker_pool.h"
|
||||||
|
#include "base/threading/worker_pool.h"
|
||||||
#include "content/public/browser/browser_thread.h"
|
#include "content/public/browser/browser_thread.h"
|
||||||
#include "content/public/browser/resource_context.h"
|
#include "content/public/common/url_constants.h"
|
||||||
#include "vendor/brightray/browser/network_delegate.h"
|
#include "net/url_request/data_protocol_handler.h"
|
||||||
|
#include "net/url_request/file_protocol_handler.h"
|
||||||
namespace atom {
|
#include "net/url_request/protocol_intercept_job_factory.h"
|
||||||
|
|
||||||
using content::BrowserThread;
|
using content::BrowserThread;
|
||||||
|
|
||||||
class AtomResourceContext : public content::ResourceContext {
|
namespace atom {
|
||||||
public:
|
|
||||||
AtomResourceContext() : getter_(NULL) {}
|
|
||||||
|
|
||||||
void set_url_request_context_getter(AtomURLRequestContextGetter* getter) {
|
|
||||||
getter_ = getter;
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual net::HostResolver* GetHostResolver() OVERRIDE {
|
|
||||||
DCHECK(getter_);
|
|
||||||
return getter_->host_resolver();
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual net::URLRequestContext* GetRequestContext() OVERRIDE {
|
|
||||||
DCHECK(getter_);
|
|
||||||
return getter_->GetURLRequestContext();
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual bool AllowMicAccess(const GURL& origin) OVERRIDE {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
virtual bool AllowCameraAccess(const GURL& origin) OVERRIDE {
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
|
|
||||||
private:
|
|
||||||
AtomURLRequestContextGetter* getter_;
|
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(AtomResourceContext);
|
|
||||||
};
|
|
||||||
|
|
||||||
AtomBrowserContext::AtomBrowserContext()
|
AtomBrowserContext::AtomBrowserContext()
|
||||||
: resource_context_(new AtomResourceContext) {
|
: job_factory_(NULL) {
|
||||||
}
|
}
|
||||||
|
|
||||||
AtomBrowserContext::~AtomBrowserContext() {
|
AtomBrowserContext::~AtomBrowserContext() {
|
||||||
}
|
}
|
||||||
|
|
||||||
AtomURLRequestContextGetter* AtomBrowserContext::CreateRequestContext(
|
scoped_ptr<net::URLRequestJobFactory>
|
||||||
content::ProtocolHandlerMap* protocol_handlers) {
|
AtomBrowserContext::CreateURLRequestJobFactory(
|
||||||
DCHECK(!url_request_getter_);
|
content::ProtocolHandlerMap* handlers,
|
||||||
url_request_getter_ = new AtomURLRequestContextGetter(
|
content::ProtocolHandlerScopedVector* interceptors) {
|
||||||
GetPath(),
|
job_factory_ = new AtomURLRequestJobFactory;
|
||||||
BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::IO),
|
scoped_ptr<AtomURLRequestJobFactory> job_factory(job_factory_);
|
||||||
BrowserThread::UnsafeGetMessageLoopForThread(BrowserThread::FILE),
|
|
||||||
base::Bind(&AtomBrowserContext::CreateNetworkDelegate,
|
|
||||||
base::Unretained(this)),
|
|
||||||
protocol_handlers);
|
|
||||||
|
|
||||||
resource_context_->set_url_request_context_getter(url_request_getter_.get());
|
for (content::ProtocolHandlerMap::iterator it = handlers->begin();
|
||||||
return url_request_getter_.get();
|
it != handlers->end(); ++it)
|
||||||
}
|
job_factory->SetProtocolHandler(it->first, it->second.release());
|
||||||
|
handlers->clear();
|
||||||
|
|
||||||
content::ResourceContext* AtomBrowserContext::GetResourceContext() {
|
job_factory->SetProtocolHandler(
|
||||||
return resource_context_.get();
|
content::kDataScheme, new net::DataProtocolHandler);
|
||||||
|
job_factory->SetProtocolHandler(
|
||||||
|
content::kFileScheme, new net::FileProtocolHandler(
|
||||||
|
BrowserThread::GetBlockingPool()->GetTaskRunnerWithShutdownBehavior(
|
||||||
|
base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)));
|
||||||
|
|
||||||
|
// Set up interceptors in the reverse order.
|
||||||
|
scoped_ptr<net::URLRequestJobFactory> top_job_factory =
|
||||||
|
job_factory.PassAs<net::URLRequestJobFactory>();
|
||||||
|
content::ProtocolHandlerScopedVector::reverse_iterator it;
|
||||||
|
for (it = interceptors->rbegin(); it != interceptors->rend(); ++it)
|
||||||
|
top_job_factory.reset(new net::ProtocolInterceptJobFactory(
|
||||||
|
top_job_factory.Pass(), make_scoped_ptr(*it)));
|
||||||
|
interceptors->weak_clear();
|
||||||
|
|
||||||
|
return top_job_factory.Pass();
|
||||||
}
|
}
|
||||||
|
|
||||||
// static
|
// static
|
||||||
|
|
|
@ -5,13 +5,11 @@
|
||||||
#ifndef ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
#ifndef ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
||||||
#define ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
#define ATOM_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
||||||
|
|
||||||
#include "base/memory/scoped_ptr.h"
|
|
||||||
#include "brightray/browser/browser_context.h"
|
#include "brightray/browser/browser_context.h"
|
||||||
|
|
||||||
namespace atom {
|
namespace atom {
|
||||||
|
|
||||||
class AtomResourceContext;
|
class AtomURLRequestJobFactory;
|
||||||
class AtomURLRequestContextGetter;
|
|
||||||
|
|
||||||
class AtomBrowserContext : public brightray::BrowserContext {
|
class AtomBrowserContext : public brightray::BrowserContext {
|
||||||
public:
|
public:
|
||||||
|
@ -21,22 +19,16 @@ class AtomBrowserContext : public brightray::BrowserContext {
|
||||||
// Returns the browser context singleton.
|
// Returns the browser context singleton.
|
||||||
static AtomBrowserContext* Get();
|
static AtomBrowserContext* Get();
|
||||||
|
|
||||||
// Creates or returns the request context.
|
AtomURLRequestJobFactory* job_factory() const { return job_factory_; }
|
||||||
AtomURLRequestContextGetter* CreateRequestContext(
|
|
||||||
content::ProtocolHandlerMap*);
|
|
||||||
|
|
||||||
AtomURLRequestContextGetter* url_request_context_getter() const {
|
|
||||||
DCHECK(url_request_getter_);
|
|
||||||
return url_request_getter_.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
// content::BrowserContext implementations:
|
// brightray::BrowserContext:
|
||||||
virtual content::ResourceContext* GetResourceContext() OVERRIDE;
|
virtual scoped_ptr<net::URLRequestJobFactory> CreateURLRequestJobFactory(
|
||||||
|
content::ProtocolHandlerMap* handlers,
|
||||||
|
content::ProtocolHandlerScopedVector* interceptors) OVERRIDE;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
scoped_ptr<AtomResourceContext> resource_context_;
|
AtomURLRequestJobFactory* job_factory_; // Weak reference.
|
||||||
scoped_refptr<AtomURLRequestContextGetter> url_request_getter_;
|
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext);
|
DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext);
|
||||||
};
|
};
|
||||||
|
|
|
@ -1,186 +0,0 @@
|
||||||
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
||||||
// Use of this source code is governed by the MIT license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
#include "atom/browser/net/atom_url_request_context_getter.h"
|
|
||||||
|
|
||||||
#include <algorithm>
|
|
||||||
|
|
||||||
#include "atom/browser/net/atom_url_request_job_factory.h"
|
|
||||||
#include "base/strings/string_util.h"
|
|
||||||
#include "base/threading/sequenced_worker_pool.h"
|
|
||||||
#include "base/threading/worker_pool.h"
|
|
||||||
#include "content/public/browser/browser_thread.h"
|
|
||||||
#include "content/public/browser/cookie_store_factory.h"
|
|
||||||
#include "content/public/common/url_constants.h"
|
|
||||||
#include "net/cert/cert_verifier.h"
|
|
||||||
#include "net/cookies/cookie_monster.h"
|
|
||||||
#include "net/http/http_auth_handler_factory.h"
|
|
||||||
#include "net/http/http_cache.h"
|
|
||||||
#include "net/http/http_server_properties_impl.h"
|
|
||||||
#include "net/proxy/dhcp_proxy_script_fetcher_factory.h"
|
|
||||||
#include "net/proxy/proxy_config_service.h"
|
|
||||||
#include "net/proxy/proxy_script_fetcher_impl.h"
|
|
||||||
#include "net/proxy/proxy_service.h"
|
|
||||||
#include "net/proxy/proxy_service_v8.h"
|
|
||||||
#include "net/ssl/default_server_bound_cert_store.h"
|
|
||||||
#include "net/ssl/server_bound_cert_service.h"
|
|
||||||
#include "net/ssl/ssl_config_service_defaults.h"
|
|
||||||
#include "net/url_request/data_protocol_handler.h"
|
|
||||||
#include "net/url_request/file_protocol_handler.h"
|
|
||||||
#include "net/url_request/static_http_user_agent_settings.h"
|
|
||||||
#include "net/url_request/url_request_context.h"
|
|
||||||
#include "net/url_request/url_request_context_storage.h"
|
|
||||||
#include "vendor/brightray/browser/network_delegate.h"
|
|
||||||
#include "webkit/browser/quota/special_storage_policy.h"
|
|
||||||
|
|
||||||
namespace atom {
|
|
||||||
|
|
||||||
using content::BrowserThread;
|
|
||||||
|
|
||||||
AtomURLRequestContextGetter::AtomURLRequestContextGetter(
|
|
||||||
const base::FilePath& base_path,
|
|
||||||
base::MessageLoop* io_loop,
|
|
||||||
base::MessageLoop* file_loop,
|
|
||||||
base::Callback<scoped_ptr<brightray::NetworkDelegate>(void)> factory,
|
|
||||||
content::ProtocolHandlerMap* protocol_handlers)
|
|
||||||
: base_path_(base_path),
|
|
||||||
io_loop_(io_loop),
|
|
||||||
file_loop_(file_loop),
|
|
||||||
job_factory_(NULL),
|
|
||||||
network_delegate_factory_(factory) {
|
|
||||||
// Must first be created on the UI thread.
|
|
||||||
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::UI));
|
|
||||||
|
|
||||||
std::swap(protocol_handlers_, *protocol_handlers);
|
|
||||||
|
|
||||||
// We must create the proxy config service on the UI loop on Linux because it
|
|
||||||
// must synchronously run on the glib message loop. This will be passed to
|
|
||||||
// the URLRequestContextStorage on the IO thread in GetURLRequestContext().
|
|
||||||
proxy_config_service_.reset(
|
|
||||||
net::ProxyService::CreateSystemProxyConfigService(
|
|
||||||
io_loop_->message_loop_proxy(),
|
|
||||||
file_loop_));
|
|
||||||
}
|
|
||||||
|
|
||||||
AtomURLRequestContextGetter::~AtomURLRequestContextGetter() {
|
|
||||||
}
|
|
||||||
|
|
||||||
net::URLRequestContext* AtomURLRequestContextGetter::GetURLRequestContext() {
|
|
||||||
DCHECK(BrowserThread::CurrentlyOn(BrowserThread::IO));
|
|
||||||
|
|
||||||
base::AutoLock auto_lock(lock_);
|
|
||||||
if (!url_request_context_.get()) {
|
|
||||||
url_request_context_.reset(new net::URLRequestContext());
|
|
||||||
network_delegate_ = network_delegate_factory_.Run().Pass();
|
|
||||||
url_request_context_->set_network_delegate(network_delegate_.get());
|
|
||||||
storage_.reset(
|
|
||||||
new net::URLRequestContextStorage(url_request_context_.get()));
|
|
||||||
auto cookie_config = content::CookieStoreConfig(
|
|
||||||
base_path_.Append(FILE_PATH_LITERAL("Cookies")),
|
|
||||||
content::CookieStoreConfig::EPHEMERAL_SESSION_COOKIES,
|
|
||||||
nullptr,
|
|
||||||
nullptr);
|
|
||||||
storage_->set_cookie_store(content::CreateCookieStore(cookie_config));
|
|
||||||
storage_->set_server_bound_cert_service(new net::ServerBoundCertService(
|
|
||||||
new net::DefaultServerBoundCertStore(NULL),
|
|
||||||
base::WorkerPool::GetTaskRunner(true)));
|
|
||||||
storage_->set_http_user_agent_settings(
|
|
||||||
new net::StaticHttpUserAgentSettings(
|
|
||||||
"en-us,en", base::EmptyString()));
|
|
||||||
|
|
||||||
scoped_ptr<net::HostResolver> host_resolver(
|
|
||||||
net::HostResolver::CreateDefaultResolver(NULL));
|
|
||||||
net::DhcpProxyScriptFetcherFactory dhcp_factory;
|
|
||||||
|
|
||||||
storage_->set_cert_verifier(net::CertVerifier::CreateDefault());
|
|
||||||
storage_->set_transport_security_state(new net::TransportSecurityState);
|
|
||||||
storage_->set_proxy_service(
|
|
||||||
net::CreateProxyServiceUsingV8ProxyResolver(
|
|
||||||
proxy_config_service_.release(),
|
|
||||||
new net::ProxyScriptFetcherImpl(url_request_context_.get()),
|
|
||||||
dhcp_factory.Create(url_request_context_.get()),
|
|
||||||
host_resolver.get(),
|
|
||||||
NULL,
|
|
||||||
url_request_context_->network_delegate()));
|
|
||||||
storage_->set_ssl_config_service(new net::SSLConfigServiceDefaults);
|
|
||||||
storage_->set_http_auth_handler_factory(
|
|
||||||
net::HttpAuthHandlerFactory::CreateDefault(host_resolver.get()));
|
|
||||||
scoped_ptr<net::HttpServerProperties> server_properties(
|
|
||||||
new net::HttpServerPropertiesImpl);
|
|
||||||
storage_->set_http_server_properties(server_properties.Pass());
|
|
||||||
|
|
||||||
base::FilePath cache_path = base_path_.Append(FILE_PATH_LITERAL("Cache"));
|
|
||||||
net::HttpCache::DefaultBackend* main_backend =
|
|
||||||
new net::HttpCache::DefaultBackend(
|
|
||||||
net::DISK_CACHE,
|
|
||||||
net::CACHE_BACKEND_DEFAULT,
|
|
||||||
cache_path,
|
|
||||||
0,
|
|
||||||
BrowserThread::GetMessageLoopProxyForThread(BrowserThread::CACHE));
|
|
||||||
|
|
||||||
net::HttpNetworkSession::Params network_session_params;
|
|
||||||
network_session_params.cert_verifier =
|
|
||||||
url_request_context_->cert_verifier();
|
|
||||||
network_session_params.transport_security_state =
|
|
||||||
url_request_context_->transport_security_state();
|
|
||||||
network_session_params.server_bound_cert_service =
|
|
||||||
url_request_context_->server_bound_cert_service();
|
|
||||||
network_session_params.proxy_service =
|
|
||||||
url_request_context_->proxy_service();
|
|
||||||
network_session_params.ssl_config_service =
|
|
||||||
url_request_context_->ssl_config_service();
|
|
||||||
network_session_params.http_auth_handler_factory =
|
|
||||||
url_request_context_->http_auth_handler_factory();
|
|
||||||
network_session_params.network_delegate =
|
|
||||||
url_request_context_->network_delegate();
|
|
||||||
network_session_params.http_server_properties =
|
|
||||||
url_request_context_->http_server_properties();
|
|
||||||
network_session_params.ignore_certificate_errors = false;
|
|
||||||
|
|
||||||
// Give |storage_| ownership at the end in case it's |mapped_host_resolver|.
|
|
||||||
storage_->set_host_resolver(host_resolver.Pass());
|
|
||||||
network_session_params.host_resolver =
|
|
||||||
url_request_context_->host_resolver();
|
|
||||||
|
|
||||||
net::HttpCache* main_cache = new net::HttpCache(
|
|
||||||
network_session_params, main_backend);
|
|
||||||
storage_->set_http_transaction_factory(main_cache);
|
|
||||||
|
|
||||||
DCHECK(!job_factory_);
|
|
||||||
job_factory_ = new AtomURLRequestJobFactory;
|
|
||||||
for (content::ProtocolHandlerMap::iterator it = protocol_handlers_.begin();
|
|
||||||
it != protocol_handlers_.end();
|
|
||||||
++it) {
|
|
||||||
bool set_protocol = job_factory_->SetProtocolHandler(
|
|
||||||
it->first,
|
|
||||||
it->second.release());
|
|
||||||
DCHECK(set_protocol);
|
|
||||||
}
|
|
||||||
protocol_handlers_.clear();
|
|
||||||
|
|
||||||
scoped_ptr<net::FileProtocolHandler> file_protocol_handler(
|
|
||||||
new net::FileProtocolHandler(
|
|
||||||
content::BrowserThread::GetBlockingPool()->
|
|
||||||
GetTaskRunnerWithShutdownBehavior(
|
|
||||||
base::SequencedWorkerPool::SKIP_ON_SHUTDOWN)));
|
|
||||||
job_factory_->SetProtocolHandler(content::kDataScheme,
|
|
||||||
new net::DataProtocolHandler);
|
|
||||||
job_factory_->SetProtocolHandler(content::kFileScheme,
|
|
||||||
file_protocol_handler.release());
|
|
||||||
storage_->set_job_factory(job_factory_);
|
|
||||||
}
|
|
||||||
|
|
||||||
return url_request_context_.get();
|
|
||||||
}
|
|
||||||
|
|
||||||
scoped_refptr<base::SingleThreadTaskRunner>
|
|
||||||
AtomURLRequestContextGetter::GetNetworkTaskRunner() const {
|
|
||||||
return BrowserThread::GetMessageLoopProxyForThread(BrowserThread::IO);
|
|
||||||
}
|
|
||||||
|
|
||||||
net::HostResolver* AtomURLRequestContextGetter::host_resolver() {
|
|
||||||
return url_request_context_->host_resolver();
|
|
||||||
}
|
|
||||||
|
|
||||||
} // namespace atom
|
|
|
@ -1,76 +0,0 @@
|
||||||
// Copyright (c) 2013 GitHub, Inc. All rights reserved.
|
|
||||||
// Use of this source code is governed by the MIT license that can be
|
|
||||||
// found in the LICENSE file.
|
|
||||||
|
|
||||||
#ifndef ATOM_BROWSER_NET_ATOM_URL_REQUEST_CONTEXT_GETTER_H_
|
|
||||||
#define ATOM_BROWSER_NET_ATOM_URL_REQUEST_CONTEXT_GETTER_H_
|
|
||||||
|
|
||||||
#include "base/callback.h"
|
|
||||||
#include "base/files/file_path.h"
|
|
||||||
#include "base/memory/scoped_ptr.h"
|
|
||||||
#include "base/synchronization/lock.h"
|
|
||||||
#include "content/public/browser/content_browser_client.h"
|
|
||||||
#include "net/url_request/url_request_context_getter.h"
|
|
||||||
|
|
||||||
namespace base {
|
|
||||||
class MessageLoop;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace brightray {
|
|
||||||
class NetworkDelegate;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace net {
|
|
||||||
class HostResolver;
|
|
||||||
class ProxyConfigService;
|
|
||||||
class URLRequestContextStorage;
|
|
||||||
}
|
|
||||||
|
|
||||||
namespace atom {
|
|
||||||
|
|
||||||
class AtomURLRequestJobFactory;
|
|
||||||
|
|
||||||
class AtomURLRequestContextGetter : public net::URLRequestContextGetter {
|
|
||||||
public:
|
|
||||||
AtomURLRequestContextGetter(
|
|
||||||
const base::FilePath& base_path,
|
|
||||||
base::MessageLoop* io_loop,
|
|
||||||
base::MessageLoop* file_loop,
|
|
||||||
base::Callback<scoped_ptr<brightray::NetworkDelegate>(void)>,
|
|
||||||
content::ProtocolHandlerMap* protocol_handlers);
|
|
||||||
|
|
||||||
// net::URLRequestContextGetter implementations:
|
|
||||||
virtual net::URLRequestContext* GetURLRequestContext() OVERRIDE;
|
|
||||||
virtual scoped_refptr<base::SingleThreadTaskRunner>
|
|
||||||
GetNetworkTaskRunner() const OVERRIDE;
|
|
||||||
|
|
||||||
net::HostResolver* host_resolver();
|
|
||||||
net::URLRequestContextStorage* storage() const { return storage_.get(); }
|
|
||||||
AtomURLRequestJobFactory* job_factory() const { return job_factory_; }
|
|
||||||
|
|
||||||
protected:
|
|
||||||
virtual ~AtomURLRequestContextGetter();
|
|
||||||
|
|
||||||
private:
|
|
||||||
base::FilePath base_path_;
|
|
||||||
base::MessageLoop* io_loop_;
|
|
||||||
base::MessageLoop* file_loop_;
|
|
||||||
|
|
||||||
AtomURLRequestJobFactory* job_factory_;
|
|
||||||
base::Callback<scoped_ptr<brightray::NetworkDelegate>(void)>
|
|
||||||
network_delegate_factory_;
|
|
||||||
|
|
||||||
base::Lock lock_;
|
|
||||||
|
|
||||||
scoped_ptr<net::ProxyConfigService> proxy_config_service_;
|
|
||||||
scoped_ptr<brightray::NetworkDelegate> network_delegate_;
|
|
||||||
scoped_ptr<net::URLRequestContextStorage> storage_;
|
|
||||||
scoped_ptr<net::URLRequestContext> url_request_context_;
|
|
||||||
content::ProtocolHandlerMap protocol_handlers_;
|
|
||||||
|
|
||||||
DISALLOW_COPY_AND_ASSIGN(AtomURLRequestContextGetter);
|
|
||||||
};
|
|
||||||
|
|
||||||
} // namespace atom
|
|
||||||
|
|
||||||
#endif // ATOM_BROWSER_NET_ATOM_URL_REQUEST_CONTEXT_GETTER_H_
|
|
2
vendor/brightray
vendored
2
vendor/brightray
vendored
|
@ -1 +1 @@
|
||||||
Subproject commit c46e565a81c4878ec6b4d819986a651e08b0be98
|
Subproject commit 85c66fe32557cb55ba4cc3370accd6f6c05fb06d
|
Loading…
Reference in a new issue