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
|
|
|
|
2017-05-18 22:06:57 +00:00
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "base/files/file_path.h"
|
2016-05-23 01:59:07 +00:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2013-03-13 19:12:05 +00:00
|
|
|
#include "content/public/browser/content_browser_client.h"
|
2018-04-08 17:50:21 +00:00
|
|
|
#include "net/cookies/cookie_change_dispatcher.h"
|
2015-01-05 21:29:16 +00:00
|
|
|
#include "net/http/http_cache.h"
|
2016-10-17 10:36:37 +00:00
|
|
|
#include "net/http/transport_security_state.h"
|
2015-05-06 05:35:48 +00:00
|
|
|
#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
|
|
|
|
|
2013-04-18 03:27:53 +00:00
|
|
|
namespace base {
|
2013-03-13 19:12:05 +00:00
|
|
|
class MessageLoop;
|
2013-04-18 03:27:53 +00:00
|
|
|
}
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
namespace net {
|
2014-08-15 04:30:50 +00:00
|
|
|
class HostMappingRules;
|
2013-03-13 19:12:05 +00:00
|
|
|
class HostResolver;
|
2016-03-08 11:59:29 +00:00
|
|
|
class HttpAuthPreferences;
|
2014-08-20 06:39:09 +00:00
|
|
|
class NetworkDelegate;
|
2013-03-13 19:12:05 +00:00
|
|
|
class ProxyConfigService;
|
|
|
|
class URLRequestContextStorage;
|
2014-08-20 06:39:09 +00:00
|
|
|
class URLRequestJobFactory;
|
2018-04-18 01:46:27 +00:00
|
|
|
} // namespace net
|
2013-03-13 19:12:05 +00:00
|
|
|
|
|
|
|
namespace brightray {
|
|
|
|
|
2017-11-15 13:09:22 +00:00
|
|
|
class RequireCTDelegate;
|
2015-08-11 10:29:55 +00:00
|
|
|
class NetLog;
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
class URLRequestContextGetter : public net::URLRequestContextGetter {
|
2013-11-17 23:43:46 +00:00
|
|
|
public:
|
2014-08-20 06:39:09 +00:00
|
|
|
class Delegate {
|
|
|
|
public:
|
2016-05-21 18:10:02 +00:00
|
|
|
Delegate() {}
|
2014-08-20 06:39:09 +00:00
|
|
|
virtual ~Delegate() {}
|
|
|
|
|
2018-04-17 23:47:47 +00:00
|
|
|
virtual std::unique_ptr<net::NetworkDelegate> CreateNetworkDelegate();
|
2015-07-14 17:04:34 +00:00
|
|
|
virtual std::string GetUserAgent();
|
2016-06-15 11:30:26 +00:00
|
|
|
virtual std::unique_ptr<net::URLRequestJobFactory>
|
2017-03-23 22:47:30 +00:00
|
|
|
CreateURLRequestJobFactory(content::ProtocolHandlerMap* protocol_handlers);
|
2015-01-05 21:29:16 +00:00
|
|
|
virtual net::HttpCache::BackendFactory* CreateHttpCacheBackendFactory(
|
|
|
|
const base::FilePath& base_path);
|
2017-11-15 13:09:22 +00:00
|
|
|
virtual std::unique_ptr<net::CertVerifier> CreateCertVerifier(
|
|
|
|
RequireCTDelegate* ct_delegate);
|
2015-09-21 16:44:32 +00:00
|
|
|
virtual net::SSLConfigService* CreateSSLConfigService();
|
2016-08-05 07:23:31 +00:00
|
|
|
virtual std::vector<std::string> GetCookieableSchemes();
|
2017-11-28 07:23:42 +00:00
|
|
|
virtual void NotifyCookieChange(const net::CanonicalCookie& cookie,
|
|
|
|
bool removed,
|
2018-04-08 17:50:21 +00:00
|
|
|
net::CookieChangeCause cause) {}
|
2014-08-20 06:39:09 +00:00
|
|
|
};
|
|
|
|
|
2013-03-13 19:12:05 +00:00
|
|
|
URLRequestContextGetter(
|
2014-08-20 06:39:09 +00:00
|
|
|
Delegate* delegate,
|
2015-08-11 10:29:55 +00:00
|
|
|
NetLog* net_log,
|
2013-03-13 19:12:05 +00:00
|
|
|
const base::FilePath& base_path,
|
2015-08-26 21:40:02 +00:00
|
|
|
bool in_memory,
|
2017-01-23 06:42:37 +00:00
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner,
|
2014-06-26 20:27:22 +00:00
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
2014-08-31 10:43:01 +00:00
|
|
|
content::URLRequestInterceptorScopedVector protocol_interceptors);
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-04-08 17:50:21 +00:00
|
|
|
// net::CookieChangeDispatcher::CookieChangedCallback implementation.
|
2017-11-27 03:27:14 +00:00
|
|
|
void OnCookieChanged(const net::CanonicalCookie& cookie,
|
2018-04-08 17:50:21 +00:00
|
|
|
net::CookieChangeCause cause);
|
2017-11-27 03:27:14 +00:00
|
|
|
|
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
|
|
|
|
2014-08-20 07:19:25 +00:00
|
|
|
net::HostResolver* host_resolver();
|
2016-06-15 11:30:26 +00:00
|
|
|
net::URLRequestJobFactory* job_factory() const { return job_factory_; }
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
void NotifyContextShutdownOnIO();
|
|
|
|
|
2014-08-20 07:19:25 +00:00
|
|
|
private:
|
2018-04-17 23:23:40 +00:00
|
|
|
~URLRequestContextGetter() override;
|
|
|
|
|
2014-08-20 06:39:09 +00:00
|
|
|
Delegate* delegate_;
|
|
|
|
|
2015-08-11 10:29:55 +00:00
|
|
|
NetLog* net_log_;
|
2013-03-13 19:12:05 +00:00
|
|
|
base::FilePath base_path_;
|
2015-08-26 21:40:02 +00:00
|
|
|
bool in_memory_;
|
2017-01-23 06:42:37 +00:00
|
|
|
scoped_refptr<base::SingleThreadTaskRunner> io_task_runner_;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2016-06-22 06:52:04 +00:00
|
|
|
std::string user_agent_;
|
|
|
|
|
2018-03-30 13:24:55 +00:00
|
|
|
#if DCHECK_IS_ON()
|
|
|
|
base::debug::LeakTracker<URLRequestContextGetter> leak_tracker_;
|
|
|
|
#endif
|
|
|
|
|
2017-11-15 13:09:22 +00:00
|
|
|
std::unique_ptr<RequireCTDelegate> ct_delegate_;
|
2016-05-23 01:59:07 +00:00
|
|
|
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_;
|
2018-04-08 17:50:21 +00:00
|
|
|
std::unique_ptr<net::CookieChangeSubscription> cookie_change_sub_;
|
2013-03-13 19:12:05 +00:00
|
|
|
content::ProtocolHandlerMap protocol_handlers_;
|
2014-08-31 10:43:01 +00:00
|
|
|
content::URLRequestInterceptorScopedVector protocol_interceptors_;
|
2013-03-13 19:12:05 +00:00
|
|
|
|
2016-06-15 11:30:26 +00:00
|
|
|
net::URLRequestJobFactory* job_factory_; // weak ref
|
|
|
|
|
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_
|