2014-10-31 18:17:05 +00:00
|
|
|
// Copyright (c) 2013 GitHub, Inc.
|
2014-04-25 09:49:37 +00:00
|
|
|
// Use of this source code is governed by the MIT license that can be
|
2013-04-15 16:25:08 +00:00
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
|
|
|
#define SHELL_BROWSER_ATOM_BROWSER_CONTEXT_H_
|
2013-04-15 16:25:08 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
#include <map>
|
2018-09-13 00:25:56 +00:00
|
|
|
#include <memory>
|
2015-07-14 19:16:13 +00:00
|
|
|
#include <string>
|
2016-08-04 06:45:45 +00:00
|
|
|
#include <vector>
|
2015-07-14 19:16:13 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
#include "base/memory/ref_counted_delete_on_sequence.h"
|
|
|
|
#include "base/memory/weak_ptr.h"
|
|
|
|
#include "chrome/browser/net/proxy_config_monitor.h"
|
|
|
|
#include "content/public/browser/browser_context.h"
|
2019-03-26 01:10:48 +00:00
|
|
|
#include "content/public/browser/resource_context.h"
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/browser/media/media_device_id_salt.h"
|
|
|
|
#include "shell/browser/net/url_request_context_getter.h"
|
2018-10-04 18:08:56 +00:00
|
|
|
|
|
|
|
class PrefRegistrySimple;
|
|
|
|
class PrefService;
|
|
|
|
class ValueMapPrefStore;
|
2013-04-15 16:25:08 +00:00
|
|
|
|
2018-08-21 15:51:04 +00:00
|
|
|
namespace storage {
|
|
|
|
class SpecialStoragePolicy;
|
|
|
|
}
|
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
namespace atom {
|
|
|
|
|
2016-08-31 00:08:32 +00:00
|
|
|
class AtomBlobReader;
|
2018-10-04 18:08:56 +00:00
|
|
|
class AtomBrowserContext;
|
2015-06-22 11:43:49 +00:00
|
|
|
class AtomDownloadManagerDelegate;
|
2016-01-30 11:19:18 +00:00
|
|
|
class AtomPermissionManager;
|
2018-10-04 18:08:56 +00:00
|
|
|
class CookieChangeNotifier;
|
|
|
|
class ResolveProxyHelper;
|
2018-08-21 15:51:04 +00:00
|
|
|
class SpecialStoragePolicy;
|
2014-10-22 14:55:13 +00:00
|
|
|
class WebViewManager;
|
2013-09-20 08:47:47 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
class AtomBrowserContext
|
|
|
|
: public base::RefCountedDeleteOnSequence<AtomBrowserContext>,
|
|
|
|
public content::BrowserContext {
|
2013-04-15 16:25:08 +00:00
|
|
|
public:
|
2016-07-12 12:39:54 +00:00
|
|
|
// Get or create the BrowserContext according to its |partition| and
|
2016-07-12 12:53:19 +00:00
|
|
|
// |in_memory|. The |options| will be passed to constructor when there is no
|
|
|
|
// existing BrowserContext.
|
2016-07-12 12:39:54 +00:00
|
|
|
static scoped_refptr<AtomBrowserContext> From(
|
2018-04-18 01:44:10 +00:00
|
|
|
const std::string& partition,
|
|
|
|
bool in_memory,
|
2016-07-12 12:53:19 +00:00
|
|
|
const base::DictionaryValue& options = base::DictionaryValue());
|
2015-10-19 20:12:17 +00:00
|
|
|
|
2016-06-22 06:57:51 +00:00
|
|
|
void SetUserAgent(const std::string& user_agent);
|
2018-10-04 18:08:56 +00:00
|
|
|
std::string GetUserAgent() const;
|
|
|
|
bool CanUseHttpCache() const;
|
|
|
|
int GetMaxCacheSize() const;
|
2018-08-14 21:07:53 +00:00
|
|
|
AtomBlobReader* GetBlobReader();
|
2018-10-04 18:08:56 +00:00
|
|
|
network::mojom::NetworkContextPtr GetNetworkContext();
|
|
|
|
// Get the request context, if there is none, create it.
|
|
|
|
net::URLRequestContextGetter* GetRequestContext();
|
|
|
|
ResolveProxyHelper* GetResolveProxyHelper();
|
2018-08-13 23:16:04 +00:00
|
|
|
|
2014-10-22 14:55:13 +00:00
|
|
|
// content::BrowserContext:
|
2018-10-04 18:08:56 +00:00
|
|
|
base::FilePath GetPath() const override;
|
|
|
|
bool IsOffTheRecord() const override;
|
|
|
|
content::ResourceContext* GetResourceContext() override;
|
|
|
|
std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
|
|
|
|
const base::FilePath& partition_path) override;
|
|
|
|
content::PushMessagingService* GetPushMessagingService() override;
|
|
|
|
content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
|
|
|
|
content::BackgroundFetchDelegate* GetBackgroundFetchDelegate() override;
|
|
|
|
content::BackgroundSyncController* GetBackgroundSyncController() override;
|
|
|
|
content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate()
|
|
|
|
override;
|
|
|
|
net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
|
|
|
|
const base::FilePath& partition_path,
|
|
|
|
bool in_memory,
|
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
|
|
|
content::URLRequestInterceptorScopedVector request_interceptors) override;
|
|
|
|
net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition(
|
|
|
|
const base::FilePath& partition_path,
|
|
|
|
bool in_memory) override;
|
|
|
|
std::string GetMediaDeviceIDSalt() override;
|
2015-06-22 11:43:49 +00:00
|
|
|
content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
|
2014-12-16 01:15:56 +00:00
|
|
|
content::BrowserPluginGuestManager* GetGuestManager() override;
|
2018-10-02 21:53:10 +00:00
|
|
|
content::PermissionControllerDelegate* GetPermissionControllerDelegate()
|
|
|
|
override;
|
2018-08-21 15:51:04 +00:00
|
|
|
storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
|
2018-10-04 18:08:56 +00:00
|
|
|
net::URLRequestContextGetter* CreateRequestContext(
|
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
|
|
|
content::URLRequestInterceptorScopedVector request_interceptors) override;
|
|
|
|
net::URLRequestContextGetter* CreateMediaRequestContext() override;
|
2019-01-22 19:50:25 +00:00
|
|
|
content::ClientHintsControllerDelegate* GetClientHintsControllerDelegate()
|
|
|
|
override;
|
2015-07-27 01:09:32 +00:00
|
|
|
|
2018-10-04 18:08:56 +00:00
|
|
|
CookieChangeNotifier* cookie_change_notifier() const {
|
|
|
|
return cookie_change_notifier_.get();
|
|
|
|
}
|
|
|
|
ProxyConfigMonitor* proxy_config_monitor() {
|
|
|
|
return proxy_config_monitor_.get();
|
|
|
|
}
|
|
|
|
PrefService* prefs() const { return prefs_.get(); }
|
|
|
|
void set_in_memory_pref_store(ValueMapPrefStore* pref_store) {
|
|
|
|
in_memory_pref_store_ = pref_store;
|
|
|
|
}
|
|
|
|
ValueMapPrefStore* in_memory_pref_store() const {
|
|
|
|
return in_memory_pref_store_;
|
|
|
|
}
|
|
|
|
base::WeakPtr<AtomBrowserContext> GetWeakPtr() {
|
|
|
|
return weak_factory_.GetWeakPtr();
|
2018-08-13 23:16:04 +00:00
|
|
|
}
|
2018-03-30 13:24:55 +00:00
|
|
|
|
2016-07-12 12:39:54 +00:00
|
|
|
protected:
|
2018-04-18 01:44:10 +00:00
|
|
|
AtomBrowserContext(const std::string& partition,
|
|
|
|
bool in_memory,
|
2016-07-12 13:05:07 +00:00
|
|
|
const base::DictionaryValue& options);
|
2016-07-12 12:39:54 +00:00
|
|
|
~AtomBrowserContext() override;
|
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
private:
|
2018-10-04 18:08:56 +00:00
|
|
|
friend class base::RefCountedDeleteOnSequence<AtomBrowserContext>;
|
|
|
|
friend class base::DeleteHelper<AtomBrowserContext>;
|
|
|
|
|
|
|
|
// Initialize pref registry.
|
|
|
|
void InitPrefs();
|
|
|
|
|
|
|
|
// partition_id => browser_context
|
|
|
|
struct PartitionKey {
|
|
|
|
std::string partition;
|
|
|
|
bool in_memory;
|
|
|
|
|
|
|
|
PartitionKey(const std::string& partition, bool in_memory)
|
|
|
|
: partition(partition), in_memory(in_memory) {}
|
|
|
|
|
|
|
|
bool operator<(const PartitionKey& other) const {
|
|
|
|
if (partition == other.partition)
|
|
|
|
return in_memory < other.in_memory;
|
|
|
|
return partition < other.partition;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool operator==(const PartitionKey& other) const {
|
|
|
|
return (partition == other.partition) && (in_memory == other.in_memory);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
using BrowserContextMap =
|
|
|
|
std::map<PartitionKey, base::WeakPtr<AtomBrowserContext>>;
|
|
|
|
static BrowserContextMap browser_context_map_;
|
|
|
|
|
|
|
|
// Self-destructing class responsible for creating URLRequestContextGetter
|
|
|
|
// on the UI thread and deletes itself on the IO thread.
|
|
|
|
URLRequestContextGetter::Handle* io_handle_;
|
|
|
|
ValueMapPrefStore* in_memory_pref_store_;
|
|
|
|
|
2019-03-26 01:10:48 +00:00
|
|
|
std::unique_ptr<content::ResourceContext> resource_context_;
|
2018-10-04 18:08:56 +00:00
|
|
|
std::unique_ptr<CookieChangeNotifier> cookie_change_notifier_;
|
|
|
|
std::unique_ptr<PrefService> prefs_;
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<AtomDownloadManagerDelegate> download_manager_delegate_;
|
|
|
|
std::unique_ptr<WebViewManager> guest_manager_;
|
|
|
|
std::unique_ptr<AtomPermissionManager> permission_manager_;
|
2016-08-31 00:08:32 +00:00
|
|
|
std::unique_ptr<AtomBlobReader> blob_reader_;
|
2018-10-19 18:51:43 +00:00
|
|
|
std::unique_ptr<MediaDeviceIDSalt> media_device_id_salt_;
|
2018-10-04 18:08:56 +00:00
|
|
|
scoped_refptr<ResolveProxyHelper> resolve_proxy_helper_;
|
|
|
|
scoped_refptr<storage::SpecialStoragePolicy> storage_policy_;
|
|
|
|
|
|
|
|
// Tracks the ProxyConfig to use, and passes any updates to a NetworkContext
|
|
|
|
// ProxyConfigClient.
|
|
|
|
std::unique_ptr<ProxyConfigMonitor> proxy_config_monitor_;
|
|
|
|
|
2016-06-22 06:46:46 +00:00
|
|
|
std::string user_agent_;
|
2018-10-04 18:08:56 +00:00
|
|
|
base::FilePath path_;
|
|
|
|
bool in_memory_ = false;
|
|
|
|
bool use_cache_ = true;
|
|
|
|
int max_cache_size_ = 0;
|
|
|
|
|
|
|
|
base::WeakPtrFactory<AtomBrowserContext> weak_factory_;
|
2017-11-28 07:23:42 +00:00
|
|
|
|
2013-04-15 16:25:08 +00:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(AtomBrowserContext);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace atom
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_BROWSER_ATOM_BROWSER_CONTEXT_H_
|