2019-03-22 23:11:51 +01:00
|
|
|
// Copyright (c) 2011 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 file.
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
#ifndef CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_IMPL_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_IMPL_H_
|
2012-04-03 03:34:16 +02:00
|
|
|
#pragma once
|
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
#include "include/cef_request_context_handler.h"
|
2015-10-17 02:44:00 +02:00
|
|
|
#include "libcef/browser/chrome_profile_stub.h"
|
2019-03-22 23:11:51 +01:00
|
|
|
#include "libcef/browser/net/url_request_context_getter.h"
|
2015-02-14 00:17:08 +01:00
|
|
|
#include "libcef/browser/resource_context.h"
|
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
#include "base/files/file_path.h"
|
|
|
|
#include "base/memory/ref_counted.h"
|
|
|
|
#include "components/proxy_config/pref_proxy_config_tracker.h"
|
|
|
|
#include "components/visitedlink/browser/visitedlink_delegate.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "content/public/browser/browser_context.h"
|
2015-02-14 00:17:08 +01:00
|
|
|
#include "content/public/browser/browser_thread.h"
|
2013-03-12 21:23:24 +01:00
|
|
|
#include "content/public/browser/content_browser_client.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
/*
|
|
|
|
// Classes used in request processing (network, storage, service, etc.):
|
|
|
|
//
|
|
|
|
// WC = WebContents
|
|
|
|
// Content API representation of a browser. Created by BHI or the system (for
|
2019-03-22 23:11:51 +01:00
|
|
|
// popups) and owned by BHI. Keeps a pointer to BC.
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
|
|
|
// BHI = CefBrowserHostImpl
|
|
|
|
// Implements the CefBrowser and CefBrowserHost interfaces which are exposed
|
|
|
|
// to clients. References an RCI instance. Owns a WC. Life span is controlled
|
|
|
|
// by client references and CefContentBrowserClient.
|
|
|
|
//
|
|
|
|
// RCI = CefRequestContextImpl
|
|
|
|
// Implements the CefRequestContext interface which is exposed to clients.
|
2019-03-22 23:11:51 +01:00
|
|
|
// References the isolated BC.
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
2019-03-22 23:11:51 +01:00
|
|
|
// BC = CefBrowserContext
|
2015-03-02 21:25:14 +01:00
|
|
|
// Entry point from WC when using an isolated RCI. Owns the RC and creates the
|
2017-02-14 23:27:19 +01:00
|
|
|
// SPI indirectly. Owned by CefBrowserMainParts for the global context or RCI
|
|
|
|
// for non-global contexts.
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
2016-08-24 11:28:52 +02:00
|
|
|
// SPI = content::StoragePartitionImpl
|
|
|
|
// Owns storage-related objects like Quota, IndexedDB, Cache, etc. Created by
|
2019-03-22 23:11:51 +01:00
|
|
|
// StoragePartitionImplMap::Get(). Provides access to the URCG. Life span is
|
|
|
|
// controlled indirectly by BC.
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
|
|
|
// RC = CefResourceContext
|
|
|
|
// Acts as a bridge for resource loading. URLRequest life span is tied to this
|
2019-03-22 23:11:51 +01:00
|
|
|
// object. Must be destroyed before the associated URCG. Life span is
|
|
|
|
// controlled by BC.
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
2019-03-22 23:11:51 +01:00
|
|
|
// URCG = CefURLRequestContextGetter
|
|
|
|
// Creates and owns the URC. Created by StoragePartitionImplMap::Get()
|
|
|
|
// calling BC::CreateRequestContext(). Life span is controlled by RC and (for
|
2016-08-24 11:28:52 +02:00
|
|
|
// the global context) CefBrowserMainParts, and SPI.
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
2019-03-22 23:11:51 +01:00
|
|
|
// URC = CefURLRequestContext
|
2015-03-02 21:25:14 +01:00
|
|
|
// Owns various network-related objects including the isolated cookie manager.
|
2015-02-14 00:17:08 +01:00
|
|
|
// Owns URLRequest objects which must be destroyed first. Life span is
|
2019-03-22 23:11:51 +01:00
|
|
|
// controlled by URCG.
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// Relationship diagram:
|
|
|
|
// ref = reference (CefRefPtr/scoped_refptr)
|
2017-02-14 23:27:19 +01:00
|
|
|
// own = ownership (std::unique_ptr)
|
2015-02-14 00:17:08 +01:00
|
|
|
// ptr = raw pointer
|
|
|
|
//
|
2019-03-22 23:11:51 +01:00
|
|
|
// CefBrowserMainParts--\ isolated cookie manager, etc.
|
|
|
|
// | \ ^
|
|
|
|
// own ref ref/own
|
|
|
|
// v v |
|
|
|
|
// BHI -own-> WC -ptr-> BC -own-> SPI -ref-> URCG --own-> URC
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
2019-03-22 23:11:51 +01:00
|
|
|
// BHI -ref-> RCI -own-> BC -own-> RC -ref-> URCG
|
2015-02-14 00:17:08 +01:00
|
|
|
//
|
|
|
|
//
|
|
|
|
// How shutdown works:
|
|
|
|
// 1. CefBrowserHostImpl is destroyed on any thread due to browser close,
|
|
|
|
// ref release, etc.
|
2017-02-14 23:27:19 +01:00
|
|
|
// 2. CefRequestContextImpl is destroyed (possibly asynchronously) on the UI
|
|
|
|
// thread due to CefBrowserHostImpl destruction, ref release, etc.
|
2019-03-22 23:11:51 +01:00
|
|
|
// 3. CefBrowserContext is destroyed on the UI thread due to
|
|
|
|
// CefRequestContextImpl destruction or deletion in
|
|
|
|
// CefBrowserMainParts::PostMainMessageLoopRun().
|
2015-02-14 00:17:08 +01:00
|
|
|
// 4. CefResourceContext is destroyed asynchronously on the IO thread due to
|
2019-03-22 23:11:51 +01:00
|
|
|
// CefBrowserContext destruction. This cancels/destroys any pending
|
2015-02-14 00:17:08 +01:00
|
|
|
// URLRequests.
|
2019-03-22 23:11:51 +01:00
|
|
|
// 5. CefURLRequestContextGetter is destroyed asynchronously on the IO thread
|
|
|
|
// due to CefResourceContext destruction (or ref release in
|
|
|
|
// CefBrowserMainParts::PostMainMessageLoopRun. This may be delayed if other
|
|
|
|
// network-related objects still have a reference to it.
|
|
|
|
// 6. CefURLRequestContext is destroyed on the IO thread due to
|
|
|
|
// CefURLRequestContextGetter destruction.
|
2015-02-14 00:17:08 +01:00
|
|
|
*/
|
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
class CefDownloadManagerDelegate;
|
2017-05-04 23:53:27 +02:00
|
|
|
class CefRequestContextImpl;
|
2019-03-22 23:11:51 +01:00
|
|
|
class CefSSLHostStateDelegate;
|
|
|
|
class CefVisitedLinkListener;
|
2015-09-09 16:05:39 +02:00
|
|
|
class HostContentSettingsMap;
|
|
|
|
class PrefService;
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
namespace extensions {
|
|
|
|
class CefExtensionSystem;
|
|
|
|
}
|
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
namespace visitedlink {
|
|
|
|
class VisitedLinkMaster;
|
|
|
|
}
|
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
// Main entry point for configuring behavior on a per-browser basis. An instance
|
|
|
|
// of this class is passed to WebContents::Create in CefBrowserHostImpl::
|
2015-03-02 21:25:14 +01:00
|
|
|
// CreateInternal. Only accessed on the UI thread unless otherwise indicated.
|
2019-03-22 23:11:51 +01:00
|
|
|
class CefBrowserContext : public ChromeProfileStub,
|
|
|
|
public visitedlink::VisitedLinkDelegate {
|
2012-04-03 03:34:16 +02:00
|
|
|
public:
|
2019-03-22 23:11:51 +01:00
|
|
|
explicit CefBrowserContext(const CefRequestContextSettings& settings);
|
|
|
|
|
|
|
|
// Returns the existing instance, if any, associated with the specified
|
|
|
|
// |cache_path|.
|
|
|
|
static CefBrowserContext* GetForCachePath(const base::FilePath& cache_path);
|
|
|
|
|
|
|
|
// Returns the underlying CefBrowserContext if any.
|
|
|
|
static CefBrowserContext* GetForContext(content::BrowserContext* context);
|
|
|
|
|
|
|
|
// Returns all existing CefBrowserContext.
|
|
|
|
static std::vector<CefBrowserContext*> GetAll();
|
2015-02-14 00:17:08 +01:00
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
// Must be called immediately after this object is created.
|
2019-03-22 23:11:51 +01:00
|
|
|
void Initialize();
|
|
|
|
|
|
|
|
// Track associated CefRequestContextImpl objects. This object will delete
|
|
|
|
// itself when the count reaches zero.
|
|
|
|
void AddCefRequestContext(CefRequestContextImpl* context);
|
|
|
|
void RemoveCefRequestContext(CefRequestContextImpl* context);
|
|
|
|
CefRequestContextImpl* GetCefRequestContext(bool impl_only) const;
|
2015-07-16 23:40:01 +02:00
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
// BrowserContext methods.
|
|
|
|
content::ResourceContext* GetResourceContext() override;
|
2019-02-01 17:42:40 +01:00
|
|
|
content::ClientHintsControllerDelegate* GetClientHintsControllerDelegate()
|
|
|
|
override;
|
2016-05-25 01:35:43 +02:00
|
|
|
net::URLRequestContextGetter* GetRequestContext() override;
|
|
|
|
net::URLRequestContextGetter* CreateMediaRequestContext() override;
|
|
|
|
net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition(
|
|
|
|
const base::FilePath& partition_path,
|
|
|
|
bool in_memory) override;
|
2019-02-01 20:40:18 +01:00
|
|
|
void SetCorsOriginAccessListForOrigin(
|
|
|
|
const url::Origin& source_origin,
|
|
|
|
std::vector<network::mojom::CorsOriginPatternPtr> allow_patterns,
|
|
|
|
std::vector<network::mojom::CorsOriginPatternPtr> block_patterns,
|
|
|
|
base::OnceClosure closure) override;
|
2019-03-22 23:11:51 +01:00
|
|
|
base::FilePath GetPath() const override;
|
|
|
|
std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
|
|
|
|
const base::FilePath& partition_path) override;
|
|
|
|
bool IsOffTheRecord() const override;
|
|
|
|
content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
|
|
|
|
content::BrowserPluginGuestManager* GetGuestManager() override;
|
|
|
|
storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
|
|
|
|
content::PushMessagingService* GetPushMessagingService() override;
|
|
|
|
content::SSLHostStateDelegate* GetSSLHostStateDelegate() override;
|
|
|
|
content::PermissionControllerDelegate* GetPermissionControllerDelegate()
|
|
|
|
override;
|
|
|
|
content::BackgroundFetchDelegate* GetBackgroundFetchDelegate() override;
|
|
|
|
content::BackgroundSyncController* GetBackgroundSyncController() override;
|
|
|
|
content::BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate()
|
|
|
|
override;
|
|
|
|
net::URLRequestContextGetter* CreateRequestContext(
|
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
|
|
|
content::URLRequestInterceptorScopedVector request_interceptors) override;
|
|
|
|
net::URLRequestContextGetter* CreateRequestContextForStoragePartition(
|
|
|
|
const base::FilePath& partition_path,
|
|
|
|
bool in_memory,
|
|
|
|
content::ProtocolHandlerMap* protocol_handlers,
|
|
|
|
content::URLRequestInterceptorScopedVector request_interceptors) override;
|
2015-02-14 00:17:08 +01:00
|
|
|
|
2015-10-17 02:44:00 +02:00
|
|
|
// Profile methods.
|
|
|
|
ChromeZoomLevelPrefs* GetZoomLevelPrefs() override;
|
2018-07-24 00:32:02 +02:00
|
|
|
scoped_refptr<network::SharedURLLoaderFactory> GetURLLoaderFactory() override;
|
2019-03-22 23:11:51 +01:00
|
|
|
PrefService* GetPrefs() override;
|
|
|
|
bool AllowsBrowserWindows() const override { return false; }
|
|
|
|
const PrefService* GetPrefs() const override;
|
|
|
|
SimpleFactoryKey* GetSimpleFactoryKey() const override;
|
|
|
|
|
|
|
|
// visitedlink::VisitedLinkDelegate methods.
|
|
|
|
void RebuildTable(const scoped_refptr<URLEnumerator>& enumerator) override;
|
2015-10-17 02:44:00 +02:00
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
// Returns the first RequestContext without a handler, if one exists,
|
|
|
|
// otherwise the first RequestContext.
|
|
|
|
CefRequestContextImpl* GetCefRequestContext() const;
|
2017-05-04 23:53:27 +02:00
|
|
|
|
2015-03-02 21:25:14 +01:00
|
|
|
// Returns the settings associated with this object. Safe to call from any
|
|
|
|
// thread.
|
2019-03-22 23:11:51 +01:00
|
|
|
const CefRequestContextSettings& GetSettings() const;
|
2015-03-02 21:25:14 +01:00
|
|
|
|
|
|
|
// Returns the handler associated with this object. Safe to call from any
|
|
|
|
// thread.
|
2019-03-22 23:11:51 +01:00
|
|
|
CefRefPtr<CefRequestContextHandler> GetHandler() const;
|
2015-03-02 21:25:14 +01:00
|
|
|
|
2015-09-09 16:05:39 +02:00
|
|
|
// Settings for plugins and extensions.
|
2019-03-22 23:11:51 +01:00
|
|
|
HostContentSettingsMap* GetHostContentSettingsMap();
|
2015-09-09 16:05:39 +02:00
|
|
|
|
2016-01-12 01:19:51 +01:00
|
|
|
// Called from CefBrowserHostImpl::DidNavigateAnyFrame to update the table of
|
|
|
|
// visited links.
|
2019-03-22 23:11:51 +01:00
|
|
|
void AddVisitedURLs(const std::vector<GURL>& urls);
|
2016-01-12 01:19:51 +01:00
|
|
|
|
2016-10-17 20:14:44 +02:00
|
|
|
// Called from CefBrowserHostImpl::RenderFrameDeleted or
|
|
|
|
// CefMimeHandlerViewGuestDelegate::OnGuestDetached when a render frame is
|
|
|
|
// deleted.
|
|
|
|
void OnRenderFrameDeleted(int render_process_id,
|
|
|
|
int render_frame_id,
|
|
|
|
bool is_main_frame,
|
|
|
|
bool is_guest_view);
|
|
|
|
|
|
|
|
// Called from CefRequestContextImpl::PurgePluginListCacheInternal when the
|
|
|
|
// plugin list cache should be purged.
|
|
|
|
void OnPurgePluginListCache();
|
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
CefResourceContext* resource_context() const {
|
2015-07-16 23:40:01 +02:00
|
|
|
return resource_context_.get();
|
|
|
|
}
|
|
|
|
extensions::CefExtensionSystem* extension_system() const {
|
|
|
|
return extension_system_;
|
2015-02-14 00:17:08 +01:00
|
|
|
}
|
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
// Guaranteed to exist once this object has been initialized.
|
|
|
|
scoped_refptr<CefURLRequestContextGetter> request_context_getter() const {
|
|
|
|
return url_request_getter_;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
// Allow deletion via std::unique_ptr().
|
|
|
|
friend std::default_delete<CefBrowserContext>;
|
2015-02-14 00:17:08 +01:00
|
|
|
|
|
|
|
~CefBrowserContext() override;
|
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
// Members initialized during construction are safe to access from any thread.
|
|
|
|
CefRequestContextSettings settings_;
|
|
|
|
base::FilePath cache_path_;
|
2017-04-20 21:28:17 +02:00
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
// CefRequestContextImpl objects referencing this object.
|
|
|
|
std::set<CefRequestContextImpl*> request_context_set_;
|
2015-10-17 02:44:00 +02:00
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
std::unique_ptr<PrefService> pref_service_;
|
|
|
|
std::unique_ptr<PrefProxyConfigTracker> pref_proxy_config_tracker_;
|
|
|
|
|
|
|
|
std::unique_ptr<CefDownloadManagerDelegate> download_manager_delegate_;
|
|
|
|
scoped_refptr<CefURLRequestContextGetter> url_request_getter_;
|
|
|
|
std::unique_ptr<CefSSLHostStateDelegate> ssl_host_state_delegate_;
|
|
|
|
scoped_refptr<HostContentSettingsMap> host_content_settings_map_;
|
|
|
|
std::unique_ptr<visitedlink::VisitedLinkMaster> visitedlink_master_;
|
|
|
|
// |visitedlink_listener_| is owned by visitedlink_master_.
|
|
|
|
CefVisitedLinkListener* visitedlink_listener_;
|
2016-08-31 13:25:56 +02:00
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefResourceContext> resource_context_;
|
2015-02-14 00:17:08 +01:00
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
// Owned by the KeyedService system.
|
2019-03-22 23:11:51 +01:00
|
|
|
extensions::CefExtensionSystem* extension_system_ = nullptr;
|
2015-07-16 23:40:01 +02:00
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
DISALLOW_COPY_AND_ASSIGN(CefBrowserContext);
|
2012-04-03 03:34:16 +02:00
|
|
|
};
|
|
|
|
|
2019-03-22 23:11:51 +01:00
|
|
|
#endif // CEF_LIBCEF_BROWSER_BROWSER_CONTEXT_IMPL_H_
|