2013-03-13 19:12:05 +00:00
|
|
|
// Copyright (c) 2012 The Chromium Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE-CHROMIUM file.
|
|
|
|
|
2013-03-13 19:42:16 +00:00
|
|
|
#ifndef BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
|
|
|
|
#define BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-08-13 23:16:04 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
#include "base/files/file_path.h"
|
|
|
|
#include "content/public/browser/browser_context.h"
|
|
|
|
#include "content/public/browser/content_browser_client.h"
|
|
|
|
#include "net/cookies/cookie_change_dispatcher.h"
|
|
|
|
#include "net/http/http_cache.h"
|
|
|
|
#include "net/http/transport_security_state.h"
|
|
|
|
#include "net/http/url_security_manager.h"
|
2017-12-15 17:32:33 +00:00
|
|
|
#include "net/url_request/url_request_context.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "net/url_request/url_request_context_getter.h"
|
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
#if DCHECK_IS_ON()
|
|
|
|
#include "base/debug/leak_tracker.h"
|
|
|
|
#endif
|
|
|
|
|
2018-08-13 23:16:04 +00:00
|
|
|
namespace net {
|
|
|
|
class HostMappingRules;
|
|
|
|
class HostResolver;
|
|
|
|
class HttpAuthPreferences;
|
|
|
|
class NetworkDelegate;
|
|
|
|
class ProxyConfigService;
|
|
|
|
class URLRequestContextStorage;
|
|
|
|
class URLRequestJobFactory;
|
|
|
|
} // namespace net
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
namespace brightray {
|
|
|
|
|
2018-08-14 21:07:53 +00:00
|
|
|
class BrowserContext;
|
|
|
|
class ResourceContext;
|
2018-08-13 23:16:04 +00:00
|
|
|
class RequireCTDelegate;
|
|
|
|
class NetLog;
|
2015-08-11 10:29:55 +00:00
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
class URLRequestContextGetter : public net::URLRequestContextGetter {
|
2013-11-17 23:43:46 +00:00
|
|
|
public:
|
2018-08-13 23:16:04 +00:00
|
|
|
class Delegate {
|
|
|
|
public:
|
|
|
|
Delegate() {}
|
|
|
|
virtual ~Delegate() {}
|
|
|
|
|
2018-08-14 21:07:53 +00:00
|
|
|
virtual std::unique_ptr<net::NetworkDelegate> CreateNetworkDelegate() = 0;
|
2018-08-13 23:16:04 +00:00
|
|
|
virtual std::unique_ptr<net::URLRequestJobFactory>
|
2018-08-14 21:07:53 +00:00
|
|
|
CreateURLRequestJobFactory(
|
|
|
|
net::URLRequestContext* url_request_context,
|
|
|
|
content::ProtocolHandlerMap* protocol_handlers) = 0;
|
2018-08-13 23:16:04 +00:00
|
|
|
virtual net::HttpCache::BackendFactory* CreateHttpCacheBackendFactory(
|
2018-08-14 21:07:53 +00:00
|
|
|
const base::FilePath& base_path) = 0;
|
2018-08-13 23:16:04 +00:00
|
|
|
virtual std::unique_ptr<net::CertVerifier> CreateCertVerifier(
|
2018-08-14 21:07:53 +00:00
|
|
|
RequireCTDelegate* ct_delegate) = 0;
|
|
|
|
virtual void GetCookieableSchemes(
|
|
|
|
std::vector<std::string>* cookie_schemes) {}
|
|
|
|
virtual void OnCookieChanged(const net::CanonicalCookie& cookie,
|
|
|
|
net::CookieChangeCause cause) {}
|
2018-08-13 23:16:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
URLRequestContextGetter(
|
|
|
|
NetLog* net_log,
|
2018-08-14 21:07:53 +00:00
|
|
|
ResourceContext* resource_context,
|
2018-08-13 23:16:04 +00:00
|
|
|
bool in_memory,
|
2018-08-14 21:07:53 +00:00
|
|
|
const std::string& user_agent,
|
|
|
|
const base::FilePath& base_path,
|
2018-08-13 23:16:04 +00:00
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
|
|
|
content::URLRequestInterceptorScopedVector protocol_interceptors);
|
|
|
|
|
2014-08-20 07:19:25 +00:00
|
|
|
// net::URLRequestContextGetter:
|
2015-06-05 04:07:27 +00:00
|
|
|
net::URLRequestContext* GetURLRequestContext() override;
|
2017-03-23 22:47:30 +00:00
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> GetNetworkTaskRunner()
|
|
|
|
const override;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-08-13 23:16:04 +00:00
|
|
|
net::URLRequestJobFactory* job_factory() const { return job_factory_; }
|
2018-08-14 21:07:53 +00:00
|
|
|
void set_delegate(Delegate* delegate) { delegate_ = delegate; }
|
2018-08-13 22:22:45 +00:00
|
|
|
|
2018-08-14 21:07:53 +00:00
|
|
|
// Discard reference to URLRequestContext and inform observers to
|
|
|
|
// shutdown. Must be called only on IO thread.
|
|
|
|
void NotifyContextShuttingDown(std::unique_ptr<ResourceContext>);
|
2018-08-13 22:22:45 +00:00
|
|
|
|
2018-08-13 23:16:04 +00:00
|
|
|
private:
|
2018-08-14 21:07:53 +00:00
|
|
|
friend class BrowserContext;
|
2014-08-20 06:39:09 +00:00
|
|
|
|
2018-08-14 21:07:53 +00:00
|
|
|
// Responsible for destroying URLRequestContextGetter
|
|
|
|
// on the IO thread.
|
|
|
|
class Handle {
|
|
|
|
public:
|
|
|
|
explicit Handle(base::WeakPtr<BrowserContext> browser_context);
|
|
|
|
~Handle();
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-08-14 21:07:53 +00:00
|
|
|
scoped_refptr<URLRequestContextGetter> CreateMainRequestContextGetter(
|
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
|
|
|
content::URLRequestInterceptorScopedVector protocol_interceptors);
|
|
|
|
content::ResourceContext* GetResourceContext() const;
|
|
|
|
scoped_refptr<URLRequestContextGetter> GetMainRequestContextGetter() const;
|
2018-08-13 22:22:45 +00:00
|
|
|
|
2018-08-14 21:07:53 +00:00
|
|
|
void ShutdownOnUIThread();
|
|
|
|
|
|
|
|
private:
|
|
|
|
void LazyInitialize() const;
|
|
|
|
|
|
|
|
scoped_refptr<URLRequestContextGetter> main_request_context_getter_;
|
|
|
|
std::unique_ptr<ResourceContext> resource_context_;
|
|
|
|
base::WeakPtr<BrowserContext> browser_context_;
|
|
|
|
mutable bool initialized_;
|
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Handle);
|
|
|
|
};
|
|
|
|
|
|
|
|
~URLRequestContextGetter() override;
|
|
|
|
|
|
|
|
// net::CookieChangeDispatcher::CookieChangedCallback implementation.
|
|
|
|
void OnCookieChanged(const net::CanonicalCookie& cookie,
|
|
|
|
net::CookieChangeCause cause) const;
|
2016-06-22 06:52:04 +00:00
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
#if DCHECK_IS_ON()
|
|
|
|
base::debug::LeakTracker<URLRequestContextGetter> leak_tracker_;
|
|
|
|
#endif
|
|
|
|
|
2018-08-13 23:16:04 +00:00
|
|
|
std::unique_ptr<RequireCTDelegate> ct_delegate_;
|
|
|
|
std::unique_ptr<net::ProxyConfigService> proxy_config_service_;
|
|
|
|
std::unique_ptr<net::URLRequestContextStorage> storage_;
|
|
|
|
std::unique_ptr<net::URLRequestContext> url_request_context_;
|
|
|
|
std::unique_ptr<net::HostMappingRules> host_mapping_rules_;
|
|
|
|
std::unique_ptr<net::HttpAuthPreferences> http_auth_preferences_;
|
|
|
|
std::unique_ptr<net::HttpNetworkSession> http_network_session_;
|
|
|
|
std::unique_ptr<net::CookieChangeSubscription> cookie_change_sub_;
|
2018-08-14 21:07:53 +00:00
|
|
|
|
|
|
|
net::URLRequestJobFactory* job_factory_;
|
|
|
|
Delegate* delegate_;
|
|
|
|
NetLog* net_log_;
|
|
|
|
ResourceContext* resource_context_;
|
2018-08-13 23:16:04 +00:00
|
|
|
content::ProtocolHandlerMap protocol_handlers_;
|
|
|
|
content::URLRequestInterceptorScopedVector protocol_interceptors_;
|
2018-08-14 21:07:53 +00:00
|
|
|
base::FilePath base_path_;
|
|
|
|
bool in_memory_;
|
|
|
|
std::string user_agent_;
|
2018-03-30 13:24:55 +00:00
|
|
|
bool context_shutting_down_;
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(URLRequestContextGetter);
|
|
|
|
};
|
|
|
|
|
2013-11-17 23:20:17 +00:00
|
|
|
} // namespace brightray
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2017-05-18 22:05:25 +00:00
|
|
|
#endif // BRIGHTRAY_BROWSER_URL_REQUEST_CONTEXT_GETTER_H_
|