2012-04-03 03:34:16 +02: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.
|
|
|
|
|
|
|
|
#ifndef CEF_LIBCEF_BROWSER_CONTENT_BROWSER_CLIENT_H_
|
|
|
|
#define CEF_LIBCEF_BROWSER_CONTENT_BROWSER_CLIENT_H_
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <utility>
|
|
|
|
|
2013-09-03 18:43:31 +02:00
|
|
|
#include "include/cef_request_context_handler.h"
|
2015-02-14 00:17:08 +01:00
|
|
|
#include "libcef/browser/browser_context_impl.h"
|
2015-11-26 03:53:12 +01:00
|
|
|
#include "libcef/browser/net/url_request_context_getter_impl.h"
|
2013-09-03 18:43:31 +02:00
|
|
|
|
2016-01-06 20:20:54 +01:00
|
|
|
#include "base/macros.h"
|
2012-12-30 12:17:49 +01:00
|
|
|
#include "base/memory/ref_counted.h"
|
2016-01-06 20:20:54 +01:00
|
|
|
#include "build/build_config.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
#include "content/public/browser/content_browser_client.h"
|
2015-03-04 02:15:50 +01:00
|
|
|
#include "third_party/skia/include/core/SkColor.h"
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
class CefBrowserMainParts;
|
2013-09-03 18:43:31 +02:00
|
|
|
class CefDevToolsDelegate;
|
2012-06-25 23:21:27 +02:00
|
|
|
class CefResourceDispatcherHostDelegate;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
|
|
|
namespace content {
|
2015-09-25 13:59:30 +02:00
|
|
|
class PluginServiceFilter;
|
2012-04-03 03:34:16 +02:00
|
|
|
class SiteInstance;
|
|
|
|
}
|
|
|
|
|
|
|
|
class CefContentBrowserClient : public content::ContentBrowserClient {
|
|
|
|
public:
|
|
|
|
CefContentBrowserClient();
|
2014-11-12 20:25:15 +01:00
|
|
|
~CefContentBrowserClient() override;
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2012-11-20 21:08:36 +01:00
|
|
|
// Returns the singleton CefContentBrowserClient instance.
|
|
|
|
static CefContentBrowserClient* Get();
|
|
|
|
|
2013-09-03 18:43:31 +02:00
|
|
|
// ContentBrowserClient implementation.
|
2014-11-12 20:25:15 +01:00
|
|
|
content::BrowserMainParts* CreateBrowserMainParts(
|
|
|
|
const content::MainFunctionParams& parameters) override;
|
|
|
|
void RenderProcessWillLaunch(
|
|
|
|
content::RenderProcessHost* host) override;
|
2015-07-16 23:40:01 +02:00
|
|
|
bool ShouldUseProcessPerSite(content::BrowserContext* browser_context,
|
|
|
|
const GURL& effective_url) override;
|
2014-11-12 20:25:15 +01:00
|
|
|
bool IsHandledURL(const GURL& url) override;
|
2016-07-20 20:03:38 +02:00
|
|
|
void SiteInstanceGotProcess(content::SiteInstance* site_instance) override;
|
|
|
|
void SiteInstanceDeleting(content::SiteInstance* site_instance) override;
|
2016-11-23 21:54:29 +01:00
|
|
|
std::unique_ptr<base::Value> GetServiceManifestOverlay(
|
|
|
|
const std::string& name) override;
|
2014-11-12 20:25:15 +01:00
|
|
|
void AppendExtraCommandLineSwitches(base::CommandLine* command_line,
|
|
|
|
int child_process_id) override;
|
|
|
|
content::QuotaPermissionContext*
|
|
|
|
CreateQuotaPermissionContext() override;
|
|
|
|
content::MediaObserver* GetMediaObserver() override;
|
|
|
|
content::SpeechRecognitionManagerDelegate*
|
2014-12-13 21:18:31 +01:00
|
|
|
CreateSpeechRecognitionManagerDelegate() override;
|
2014-11-12 20:25:15 +01:00
|
|
|
void AllowCertificateError(
|
2015-12-09 17:10:16 +01:00
|
|
|
content::WebContents* web_contents,
|
2013-04-04 19:50:35 +02:00
|
|
|
int cert_error,
|
|
|
|
const net::SSLInfo& ssl_info,
|
|
|
|
const GURL& request_url,
|
2014-09-04 19:53:40 +02:00
|
|
|
content::ResourceType resource_type,
|
2013-04-04 19:50:35 +02:00
|
|
|
bool overridable,
|
|
|
|
bool strict_enforcement,
|
2014-09-04 19:53:40 +02:00
|
|
|
bool expired_previous_decision,
|
2016-08-31 13:25:56 +02:00
|
|
|
const base::Callback<
|
|
|
|
void(content::CertificateRequestResultType)>& callback) override;
|
2015-05-19 19:55:58 +02:00
|
|
|
void SelectClientCertificate(
|
|
|
|
content::WebContents* web_contents,
|
|
|
|
net::SSLCertRequestInfo* cert_request_info,
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<content::ClientCertificateDelegate> delegate) override;
|
2014-11-12 20:25:15 +01:00
|
|
|
bool CanCreateWindow(const GURL& opener_url,
|
|
|
|
const GURL& opener_top_level_frame_url,
|
|
|
|
const GURL& source_origin,
|
|
|
|
WindowContainerType container_type,
|
|
|
|
const GURL& target_url,
|
|
|
|
const content::Referrer& referrer,
|
2016-08-31 13:25:56 +02:00
|
|
|
const std::string& frame_name,
|
2014-11-12 20:25:15 +01:00
|
|
|
WindowOpenDisposition disposition,
|
|
|
|
const blink::WebWindowFeatures& features,
|
|
|
|
bool user_gesture,
|
|
|
|
bool opener_suppressed,
|
|
|
|
content::ResourceContext* context,
|
|
|
|
int render_process_id,
|
2015-07-24 02:06:56 +02:00
|
|
|
int opener_render_view_id,
|
|
|
|
int opener_render_frame_id,
|
2014-11-12 20:25:15 +01:00
|
|
|
bool* no_javascript_access) override;
|
|
|
|
void ResourceDispatcherHostCreated() override;
|
|
|
|
void OverrideWebkitPrefs(content::RenderViewHost* rvh,
|
|
|
|
content::WebPreferences* prefs) override;
|
|
|
|
void BrowserURLHandlerCreated(
|
|
|
|
content::BrowserURLHandler* handler) override;
|
|
|
|
std::string GetDefaultDownloadName() override;
|
2015-03-25 22:22:47 +01:00
|
|
|
void DidCreatePpapiPlugin(content::BrowserPpapiHost* browser_host) override;
|
2014-11-12 20:25:15 +01:00
|
|
|
content::DevToolsManagerDelegate* GetDevToolsManagerDelegate()
|
|
|
|
override;
|
2015-10-09 17:23:12 +02:00
|
|
|
ScopedVector<content::NavigationThrottle> CreateThrottlesForNavigation(
|
|
|
|
content::NavigationHandle* navigation_handle) override;
|
2012-11-21 01:40:15 +01:00
|
|
|
|
2013-11-21 23:43:36 +01:00
|
|
|
#if defined(OS_POSIX) && !defined(OS_MACOSX)
|
2014-11-12 20:25:15 +01:00
|
|
|
void GetAdditionalMappedFilesForChildProcess(
|
2014-04-04 18:50:38 +02:00
|
|
|
const base::CommandLine& command_line,
|
2013-11-21 23:43:36 +01:00
|
|
|
int child_process_id,
|
2014-11-12 20:25:15 +01:00
|
|
|
content::FileDescriptorInfo* mappings) override;
|
2013-11-21 23:43:36 +01:00
|
|
|
#endif
|
|
|
|
|
2012-09-11 00:19:19 +02:00
|
|
|
#if defined(OS_WIN)
|
2016-11-23 21:54:29 +01:00
|
|
|
const wchar_t* GetResourceDllName();
|
2015-12-09 17:10:16 +01:00
|
|
|
bool PreSpawnRenderer(sandbox::TargetPolicy* policy) override;
|
2012-09-11 00:19:19 +02:00
|
|
|
#endif
|
2012-04-03 03:34:16 +02:00
|
|
|
|
2013-06-05 01:37:26 +02:00
|
|
|
// Perform browser process registration for the custom scheme.
|
|
|
|
void RegisterCustomScheme(const std::string& scheme);
|
2013-06-04 19:41:37 +02:00
|
|
|
|
2015-02-14 00:17:08 +01:00
|
|
|
scoped_refptr<CefBrowserContextImpl> browser_context() const;
|
2013-09-03 18:43:31 +02:00
|
|
|
CefDevToolsDelegate* devtools_delegate() const;
|
2013-02-23 01:43:28 +01:00
|
|
|
|
2013-09-03 18:43:31 +02:00
|
|
|
private:
|
2016-07-20 20:03:38 +02:00
|
|
|
// Returns the extension or app associated with |site_instance| or NULL.
|
|
|
|
const extensions::Extension* GetExtension(
|
|
|
|
content::SiteInstance* site_instance);
|
|
|
|
|
2012-04-03 03:34:16 +02:00
|
|
|
CefBrowserMainParts* browser_main_parts_;
|
|
|
|
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<content::PluginServiceFilter> plugin_service_filter_;
|
|
|
|
std::unique_ptr<CefResourceDispatcherHostDelegate>
|
2012-06-25 23:21:27 +02:00
|
|
|
resource_dispatcher_host_delegate_;
|
2012-04-03 03:34:16 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // CEF_LIBCEF_BROWSER_CONTENT_BROWSER_CLIENT_H_
|