2015-07-16 23:40:01 +02:00
|
|
|
// Copyright 2015 The Chromium Embedded Framework Authors.
|
|
|
|
// Portions copyright 2014 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.
|
|
|
|
|
|
|
|
#include "libcef/browser/extensions/extensions_browser_client.h"
|
|
|
|
|
2015-09-09 16:05:39 +02:00
|
|
|
#include "libcef/browser/browser_context_impl.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
#include "libcef/browser/extensions/component_extension_resource_manager.h"
|
|
|
|
#include "libcef/browser/extensions/extension_system_factory.h"
|
2015-07-24 02:06:56 +02:00
|
|
|
#include "libcef/browser/extensions/extension_web_contents_observer.h"
|
2015-07-16 23:40:01 +02:00
|
|
|
#include "libcef/browser/extensions/extensions_api_client.h"
|
|
|
|
#include "libcef/browser/extensions/url_request_util.h"
|
|
|
|
|
|
|
|
#include "cef/libcef/browser/extensions/api/generated_api_registration.h"
|
|
|
|
#include "content/public/browser/browser_context.h"
|
|
|
|
#include "content/public/browser/browser_thread.h"
|
|
|
|
#include "content/public/browser/render_frame_host.h"
|
|
|
|
#include "extensions/browser/api/extensions_api_client.h"
|
|
|
|
#include "extensions/browser/api/generated_api_registration.h"
|
|
|
|
#include "extensions/browser/api/runtime/runtime_api_delegate.h"
|
|
|
|
#include "extensions/browser/app_sorting.h"
|
|
|
|
#include "extensions/browser/event_router.h"
|
|
|
|
#include "extensions/browser/extension_function_registry.h"
|
|
|
|
#include "extensions/browser/extension_host_delegate.h"
|
|
|
|
#include "extensions/browser/mojo/service_registration.h"
|
|
|
|
#include "extensions/browser/url_request_util.h"
|
|
|
|
|
|
|
|
using content::BrowserContext;
|
|
|
|
using content::BrowserThread;
|
|
|
|
|
|
|
|
namespace extensions {
|
|
|
|
|
|
|
|
CefExtensionsBrowserClient::CefExtensionsBrowserClient()
|
|
|
|
: api_client_(new CefExtensionsAPIClient),
|
|
|
|
resource_manager_(new CefComponentExtensionResourceManager),
|
|
|
|
event_router_forwarder_(new EventRouterForwarder) {
|
|
|
|
}
|
|
|
|
|
|
|
|
CefExtensionsBrowserClient::~CefExtensionsBrowserClient() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsShuttingDown() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::AreExtensionsDisabled(
|
|
|
|
const base::CommandLine& command_line,
|
|
|
|
BrowserContext* context) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsValidContext(BrowserContext* context) {
|
|
|
|
return CefBrowserContextImpl::GetForContext(context) != NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsSameContext(BrowserContext* first,
|
|
|
|
BrowserContext* second) {
|
|
|
|
return first == second;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::HasOffTheRecordContext(
|
|
|
|
BrowserContext* context) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowserContext* CefExtensionsBrowserClient::GetOffTheRecordContext(
|
|
|
|
BrowserContext* context) {
|
|
|
|
// TODO(extensions): Do we need to support this?
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
BrowserContext* CefExtensionsBrowserClient::GetOriginalContext(
|
|
|
|
BrowserContext* context) {
|
|
|
|
return context;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsGuestSession(
|
|
|
|
BrowserContext* context) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsExtensionIncognitoEnabled(
|
|
|
|
const std::string& extension_id,
|
|
|
|
content::BrowserContext* context) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::CanExtensionCrossIncognito(
|
|
|
|
const Extension* extension,
|
|
|
|
content::BrowserContext* context) const {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
net::URLRequestJob*
|
|
|
|
CefExtensionsBrowserClient::MaybeCreateResourceBundleRequestJob(
|
|
|
|
net::URLRequest* request,
|
|
|
|
net::NetworkDelegate* network_delegate,
|
|
|
|
const base::FilePath& directory_path,
|
|
|
|
const std::string& content_security_policy,
|
|
|
|
bool send_cors_header) {
|
|
|
|
return url_request_util::MaybeCreateURLRequestResourceBundleJob(
|
|
|
|
request,
|
|
|
|
network_delegate,
|
|
|
|
directory_path,
|
|
|
|
content_security_policy,
|
|
|
|
send_cors_header);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::AllowCrossRendererResourceLoad(
|
|
|
|
net::URLRequest* request,
|
|
|
|
bool is_incognito,
|
|
|
|
const Extension* extension,
|
|
|
|
InfoMap* extension_info_map) {
|
|
|
|
bool allowed = false;
|
|
|
|
if (url_request_util::AllowCrossRendererResourceLoad(
|
|
|
|
request, is_incognito, extension, extension_info_map, &allowed)) {
|
|
|
|
return allowed;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Couldn't determine if resource is allowed. Block the load.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
PrefService* CefExtensionsBrowserClient::GetPrefServiceForContext(
|
|
|
|
BrowserContext* context) {
|
2015-10-03 01:03:16 +02:00
|
|
|
return static_cast<CefBrowserContext*>(context)->GetPrefs();
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefExtensionsBrowserClient::GetEarlyExtensionPrefsObservers(
|
|
|
|
content::BrowserContext* context,
|
|
|
|
std::vector<ExtensionPrefsObserver*>* observers) const {
|
|
|
|
}
|
|
|
|
|
|
|
|
ProcessManagerDelegate*
|
|
|
|
CefExtensionsBrowserClient::GetProcessManagerDelegate() const {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
scoped_ptr<ExtensionHostDelegate>
|
|
|
|
CefExtensionsBrowserClient::CreateExtensionHostDelegate() {
|
|
|
|
// TODO(extensions): Implement to support Apps.
|
|
|
|
NOTREACHED();
|
|
|
|
return scoped_ptr<ExtensionHostDelegate>();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::DidVersionUpdate(BrowserContext* context) {
|
|
|
|
// TODO(jamescook): We might want to tell extensions when app_shell updates.
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefExtensionsBrowserClient::PermitExternalProtocolHandler() {
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsRunningInForcedAppMode() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-10-09 17:23:12 +02:00
|
|
|
bool CefExtensionsBrowserClient::IsLoggedInAsPublicAccount() {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
ApiActivityMonitor* CefExtensionsBrowserClient::GetApiActivityMonitor(
|
|
|
|
BrowserContext* context) {
|
|
|
|
// CEF doesn't monitor API function calls or events.
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ExtensionSystemProvider*
|
|
|
|
CefExtensionsBrowserClient::GetExtensionSystemFactory() {
|
|
|
|
return CefExtensionSystemFactory::GetInstance();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefExtensionsBrowserClient::RegisterExtensionFunctions(
|
|
|
|
ExtensionFunctionRegistry* registry) const {
|
|
|
|
// Register core extension-system APIs.
|
2015-08-14 16:41:08 +02:00
|
|
|
api::GeneratedFunctionRegistry::RegisterAll(registry);
|
2015-07-16 23:40:01 +02:00
|
|
|
|
|
|
|
// CEF-only APIs.
|
2015-08-14 16:41:08 +02:00
|
|
|
api::ChromeGeneratedFunctionRegistry::RegisterAll(registry);
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
void CefExtensionsBrowserClient::RegisterMojoServices(
|
|
|
|
content::RenderFrameHost* render_frame_host,
|
|
|
|
const Extension* extension) const {
|
|
|
|
RegisterServicesForFrame(render_frame_host, extension);
|
|
|
|
}
|
|
|
|
|
|
|
|
scoped_ptr<RuntimeAPIDelegate>
|
|
|
|
CefExtensionsBrowserClient::CreateRuntimeAPIDelegate(
|
|
|
|
content::BrowserContext* context) const {
|
|
|
|
// TODO(extensions): Implement to support Apps.
|
|
|
|
NOTREACHED();
|
|
|
|
return scoped_ptr<RuntimeAPIDelegate>();
|
|
|
|
}
|
|
|
|
|
|
|
|
const ComponentExtensionResourceManager*
|
|
|
|
CefExtensionsBrowserClient::GetComponentExtensionResourceManager() {
|
|
|
|
return resource_manager_.get();
|
|
|
|
}
|
|
|
|
|
|
|
|
void CefExtensionsBrowserClient::BroadcastEventToRenderers(
|
2015-08-14 16:41:08 +02:00
|
|
|
events::HistogramValue histogram_value,
|
2015-07-16 23:40:01 +02:00
|
|
|
const std::string& event_name,
|
|
|
|
scoped_ptr<base::ListValue> args) {
|
|
|
|
event_router_forwarder_->BroadcastEventToRenderers(
|
2015-08-14 16:41:08 +02:00
|
|
|
histogram_value, event_name, args.Pass(), GURL());
|
2015-07-16 23:40:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
net::NetLog* CefExtensionsBrowserClient::GetNetLog() {
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
ExtensionCache* CefExtensionsBrowserClient::GetExtensionCache() {
|
|
|
|
// Only used by Chrome via ExtensionService.
|
|
|
|
NOTREACHED();
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsBackgroundUpdateAllowed() {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CefExtensionsBrowserClient::IsMinBrowserVersionSupported(
|
|
|
|
const std::string& min_version) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2015-07-24 02:06:56 +02:00
|
|
|
ExtensionWebContentsObserver*
|
|
|
|
CefExtensionsBrowserClient::GetExtensionWebContentsObserver(
|
|
|
|
content::WebContents* web_contents) {
|
|
|
|
return CefExtensionWebContentsObserver::FromWebContents(web_contents);
|
|
|
|
}
|
|
|
|
|
2015-07-16 23:40:01 +02:00
|
|
|
void CefExtensionsBrowserClient::SetAPIClientForTest(
|
|
|
|
ExtensionsAPIClient* api_client) {
|
|
|
|
api_client_.reset(api_client);
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace extensions
|