0a3ec0899d
* chore: bump chromium to 128.0.6611.0 (main) (#42779) * chore: bump chromium in DEPS to 128.0.6577.0 * chore: bump chromium in DEPS to 128.0.6579.0 * 5675706: Reland "Reland "Reland "Reland "Add toolchains without PartitionAlloc-Everywhere for dump_syms et al"""" https://chromium-review.googlesource.com/c/chromium/src/+/5675706 * 5668597: [PDF Ink Signatures] Prompt download menu on save when there are edits https://chromium-review.googlesource.com/c/chromium/src/+/5668597 * 5677014: Reland "Pull data_sharing_sdk from CIPD" https://chromium-review.googlesource.com/c/chromium/src/+/5677014 * chore: fixup patch indices * chore: bump chromium in DEPS to 128.0.6581.0 * chore: bump chromium in DEPS to 128.0.6583.0 * update patches * 5455480: [Extensions] Allow service worker requests to continue without a cert https://chromium-review.googlesource.com/c/chromium/src/+/5455480 * try to get some debugging output from script/push-patch.js * chore: bump chromium in DEPS to 128.0.6585.0 * chore: bump chromium in DEPS to 128.0.6587.0 * update patches * chore: bump chromium in DEPS to 128.0.6589.0 * more patch work * maybe over here? * chore: update patches * 5673207: [HTTPS Upgrades] Disable in captive portal login webview https://chromium-review.googlesource.com/c/chromium/src/+/5673207 * 5636785: Extensions: WAR: manifest.json's use_dynamic_url requires a dynamic url https://chromium-review.googlesource.com/c/chromium/src/+/5636785 * chore: bump chromium in DEPS to 128.0.6591.0 * 5665458: Trigger WN2 page when feature is enabled https://chromium-review.googlesource.com/c/chromium/src/+/5665458 * update patches * chore: bump chromium in DEPS to 128.0.6593.0 * chore: bump chromium in DEPS to 128.0.6595.0 * chore: bump chromium in DEPS to 128.0.6597.0 * (patch update) 5694586: [compile hints] Remove the usage of v8::Isolate::SetJavaScriptCompileHintsMagicEnabledCallback API https://chromium-review.googlesource.com/c/chromium/src/+/5694586 * update patches * 5691287: Reland "Change blink::WebKeyboardEvent to use std::array in is members" https://chromium-review.googlesource.com/c/chromium/src/+/5691287 The code changed here is modeled after code in `content/renderer/pepper/event_conversion.cc` that was also modified in this CL, so I took the same approach. * 5529018: Cleanup EnableWebHidOnExtensionServiceWorker flag https://chromium-review.googlesource.com/c/chromium/src/+/5529018 * 5526324: [Code Health] Add deprecation comment for base::SupportsWeakPtr. https://chromium-review.googlesource.com/c/chromium/src/+/5526324 Note that this CL actually does make `SupportsWeakPtr` strictly restricted to existing implementations, no new ones. We could add a patch to add ourselves to this list, but it looks like we'll have to refactor this anyways in the near future. Since the refactor seems straightforward, let's try that first. * chore: bump chromium in DEPS to 128.0.6598.0 * chore: update patches * 5704737: Rename ExclusiveAccessContext::GetActiveWebContents to avoid conflict https://chromium-review.googlesource.com/c/chromium/src/+/5704737 * chore: bump chromium in DEPS to 128.0.6601.0 * chore: update patches * Add `base::StringPiece` header includes Chromium is working on replacing `base::StringPiece` with `std::string_view`. (See the Chromium Bug below.) They're currently running mass codemods (across many multiple changes) to replace uses of `StringPiece` with `string_view`, including removing the header include for `StringPiece` in those files. This cascades down to our files that were implicitly depending on those includes through some other include. They're on track to eventually deprecate and remove `StringPiece` so our code should be converted, but that can be done as an upgrade follow-up task. For now, adding the header back to files that need it should suffice for minimal upgrade changes. Chromium Bug: https://issues.chromium.org/issues/40506050 * 5702737: GlobalRequestID: Avoid unwanted inlining and narrowing int conversions https://chromium-review.googlesource.com/c/chromium/src/+/5702737 contender for smallest commit 2024 * 5706534: Rename GlobalFeatures to GlobalDesktopFeatures. https://chromium-review.googlesource.com/c/chromium/src/+/5706534 * 5691321: ui: remove params variants of SelectFile listener functions https://chromium-review.googlesource.com/c/chromium/src/+/5691321 * 5714949: [Extensions] Display re-enable dialog for MV2 disabled stage https://chromium-review.googlesource.com/c/chromium/src/+/5714949 * chore: update libc++ filenames * patch: disable scope reuse & associated dchecks in v8 (hopefully temp, upgrade follow-up) * fixup! Add `base::StringPiece` header includes * update MAS patch 5710330: Add crash keys to debug NativeWidgetMacNSWindowBorderlessFrame exception https://chromium-review.googlesource.com/c/chromium/src/+/5710330 * chore: bump chromium in DEPS to 128.0.6603.0 * chore: update patches * 5713258: Reland "Preparation for decoupling creation/initialization of context" https://chromium-review.googlesource.com/c/chromium/src/+/5713258 When destroying a context, it must already be shutdown, and this change enforces it with a new CHECK. We were overriding `BrowserContextKeyedServiceFactory::BrowserContextShutdown` with an empty implementation, which differed from the default implementation that notifies the `KeyedServiceFactory` that the context has shutdown. Since we were missing this notification, the CHECK would later trip when the service was being destoryed because it was not registered as shutdown when it was shutdown. * chore: bump chromium in DEPS to 128.0.6605.2 * chore: update patches * refactor: linux open/save dialog patch Our existing implementation was relying on an opaque `void* params` parameter that was passed through `ui::SelectFileDialog`. Recently, that parameter has been getting removed: - 5691321: ui: remove params variants of SelectFile listener functions | https://chromium-review.googlesource.com/c/chromium/src/+/5691321 - 5709097: ui: remove SelectFileDialog impl params | https://chromium-review.googlesource.com/c/chromium/src/+/5709097 - https://issues.chromium.org/issues/340178601 "reconsider SelectFileDialog" This restructures the patch to work with mostly the same mechanics, but directly on the `ui::SelectFileDialog` object. This nets us some wins in terms of a smaller patch. * 5713262: DevTools UI binding AIDA client event returns response https://chromium-review.googlesource.com/c/chromium/src/+/5713262 * fixup! refactor: linux open/save dialog patch * chore: bump chromium in DEPS to 128.0.6606.0 * chore: update patches * fixup! refactor: linux open/save dialog patch * chore: bump chromium in DEPS to 128.0.6607.0 * chore: update printing.patch Xref: https://chromium-review.googlesource.com/c/chromium/src/+/5722937 * fix: pwd error in electron-test, nan-test fix: unshallow depot_tools before 3-way apply * chore: e patches all * fixup! fix: pwd error in electron-test, nan-test * chore: bump chromium in DEPS to 128.0.6609.0 * chore: bump chromium in DEPS to 128.0.6611.0 * chore: update patches * chore: update libcxx filenames --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Jeremy Rose <nornagon@nornagon.net> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: clavin <clavin@electronjs.org> Co-authored-by: Charles Kerr <charles@charleskerr.com> Co-authored-by: Alice Zhao <alice@makenotion.com> * chore: delete duplicate declaration from merge conflict * chore: bump chromium in DEPS to 128.0.6613.7 * Revert "chore: bump chromium in DEPS to 128.0.6613.7" This reverts commit 78047428269c79d4d3532619daf0f07e307f4dbc. --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Jeremy Rose <nornagon@nornagon.net> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: clavin <clavin@electronjs.org> Co-authored-by: Charles Kerr <charles@charleskerr.com>
410 lines
14 KiB
C++
410 lines
14 KiB
C++
// 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 "shell/browser/extensions/electron_extensions_browser_client.h"
|
|
|
|
#include <algorithm>
|
|
#include <utility>
|
|
|
|
#include "base/functional/bind.h"
|
|
#include "base/memory/ptr_util.h"
|
|
#include "base/path_service.h"
|
|
#include "build/build_config.h"
|
|
#include "chrome/browser/extensions/chrome_url_request_util.h"
|
|
#include "chrome/common/chrome_paths.h"
|
|
#include "chrome/common/extensions/chrome_manifest_url_handlers.h"
|
|
#include "components/version_info/version_info.h"
|
|
#include "content/public/browser/browser_context.h"
|
|
#include "content/public/browser/browser_task_traits.h"
|
|
#include "content/public/browser/browser_thread.h"
|
|
#include "content/public/browser/render_frame_host.h"
|
|
#include "content/public/common/user_agent.h"
|
|
#include "extensions/browser/api/core_extensions_browser_api_provider.h"
|
|
#include "extensions/browser/api/extensions_api_client.h"
|
|
#include "extensions/browser/component_extension_resource_manager.h"
|
|
#include "extensions/browser/event_router.h"
|
|
#include "extensions/browser/extension_protocols.h"
|
|
#include "extensions/browser/extensions_browser_interface_binders.h"
|
|
#include "extensions/browser/null_app_sorting.h"
|
|
#include "extensions/browser/updater/null_extension_cache.h"
|
|
#include "extensions/browser/url_request_util.h"
|
|
#include "extensions/common/features/feature_channel.h"
|
|
#include "extensions/common/file_util.h"
|
|
#include "extensions/common/manifest_constants.h"
|
|
#include "extensions/common/manifest_url_handlers.h"
|
|
#include "net/base/mime_util.h"
|
|
#include "services/network/public/mojom/url_loader.mojom.h"
|
|
#include "shell/browser/browser.h"
|
|
#include "shell/browser/electron_browser_client.h"
|
|
#include "shell/browser/electron_browser_context.h"
|
|
#include "shell/browser/extensions/api/runtime/electron_runtime_api_delegate.h"
|
|
#include "shell/browser/extensions/electron_component_extension_resource_manager.h"
|
|
#include "shell/browser/extensions/electron_extension_host_delegate.h"
|
|
#include "shell/browser/extensions/electron_extension_system_factory.h"
|
|
#include "shell/browser/extensions/electron_extension_web_contents_observer.h"
|
|
#include "shell/browser/extensions/electron_extensions_api_client.h"
|
|
#include "shell/browser/extensions/electron_extensions_browser_api_provider.h"
|
|
#include "shell/browser/extensions/electron_kiosk_delegate.h"
|
|
#include "shell/browser/extensions/electron_navigation_ui_data.h"
|
|
#include "shell/browser/extensions/electron_process_manager_delegate.h"
|
|
#include "ui/base/resource/resource_bundle.h"
|
|
|
|
using content::BrowserContext;
|
|
using content::BrowserThread;
|
|
using extensions::ExtensionsBrowserClient;
|
|
|
|
namespace electron {
|
|
|
|
ElectronExtensionsBrowserClient::ElectronExtensionsBrowserClient()
|
|
: api_client_(std::make_unique<extensions::ElectronExtensionsAPIClient>()),
|
|
process_manager_delegate_(
|
|
std::make_unique<extensions::ElectronProcessManagerDelegate>()),
|
|
extension_cache_(std::make_unique<extensions::NullExtensionCache>()) {
|
|
// Electron does not have a concept of channel, so leave UNKNOWN to
|
|
// enable all channel-dependent extension APIs.
|
|
extensions::SetCurrentChannel(version_info::Channel::UNKNOWN);
|
|
resource_manager_ =
|
|
std::make_unique<extensions::ElectronComponentExtensionResourceManager>();
|
|
|
|
AddAPIProvider(
|
|
std::make_unique<extensions::CoreExtensionsBrowserAPIProvider>());
|
|
AddAPIProvider(
|
|
std::make_unique<extensions::ElectronExtensionsBrowserAPIProvider>());
|
|
}
|
|
|
|
ElectronExtensionsBrowserClient::~ElectronExtensionsBrowserClient() = default;
|
|
|
|
bool ElectronExtensionsBrowserClient::IsShuttingDown() {
|
|
return electron::Browser::Get()->is_shutting_down();
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::AreExtensionsDisabled(
|
|
const base::CommandLine& command_line,
|
|
BrowserContext* context) {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsValidContext(void* context) {
|
|
auto& context_map = ElectronBrowserContext::browser_context_map();
|
|
for (auto const& entry : context_map) {
|
|
if (entry.second && entry.second.get() == context)
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsSameContext(BrowserContext* first,
|
|
BrowserContext* second) {
|
|
return first == second;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::HasOffTheRecordContext(
|
|
BrowserContext* context) {
|
|
return false;
|
|
}
|
|
|
|
BrowserContext* ElectronExtensionsBrowserClient::GetOffTheRecordContext(
|
|
BrowserContext* context) {
|
|
// app_shell only supports a single context.
|
|
return nullptr;
|
|
}
|
|
|
|
BrowserContext* ElectronExtensionsBrowserClient::GetOriginalContext(
|
|
BrowserContext* context) {
|
|
DCHECK(context);
|
|
if (context->IsOffTheRecord()) {
|
|
return ElectronBrowserContext::From("", false);
|
|
} else {
|
|
return context;
|
|
}
|
|
}
|
|
|
|
content::BrowserContext*
|
|
ElectronExtensionsBrowserClient::GetContextRedirectedToOriginal(
|
|
content::BrowserContext* context,
|
|
bool force_guest_profile) {
|
|
return GetOriginalContext(context);
|
|
}
|
|
|
|
content::BrowserContext* ElectronExtensionsBrowserClient::GetContextOwnInstance(
|
|
content::BrowserContext* context,
|
|
bool force_guest_profile) {
|
|
return context;
|
|
}
|
|
|
|
content::BrowserContext*
|
|
ElectronExtensionsBrowserClient::GetContextForOriginalOnly(
|
|
content::BrowserContext* context,
|
|
bool force_guest_profile) {
|
|
return context->IsOffTheRecord() ? nullptr : context;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::AreExtensionsDisabledForContext(
|
|
content::BrowserContext* context) {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsGuestSession(
|
|
BrowserContext* context) const {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsExtensionIncognitoEnabled(
|
|
const std::string& extension_id,
|
|
content::BrowserContext* context) const {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::CanExtensionCrossIncognito(
|
|
const extensions::Extension* extension,
|
|
content::BrowserContext* context) const {
|
|
return false;
|
|
}
|
|
|
|
base::FilePath ElectronExtensionsBrowserClient::GetBundleResourcePath(
|
|
const network::ResourceRequest& request,
|
|
const base::FilePath& extension_resources_path,
|
|
int* resource_id) const {
|
|
*resource_id = 0;
|
|
base::FilePath chrome_resources_path;
|
|
if (!base::PathService::Get(chrome::DIR_RESOURCES, &chrome_resources_path))
|
|
return base::FilePath();
|
|
|
|
// Since component extension resources are included in
|
|
// component_extension_resources.pak file in |chrome_resources_path|,
|
|
// calculate the extension |request_relative_path| against
|
|
// |chrome_resources_path|.
|
|
if (!chrome_resources_path.IsParent(extension_resources_path))
|
|
return base::FilePath();
|
|
|
|
const base::FilePath request_relative_path =
|
|
extensions::file_util::ExtensionURLToRelativeFilePath(request.url);
|
|
if (!ExtensionsBrowserClient::Get()
|
|
->GetComponentExtensionResourceManager()
|
|
->IsComponentExtensionResource(extension_resources_path,
|
|
request_relative_path, resource_id)) {
|
|
return base::FilePath();
|
|
}
|
|
DCHECK_NE(0, *resource_id);
|
|
|
|
return request_relative_path;
|
|
}
|
|
|
|
void ElectronExtensionsBrowserClient::LoadResourceFromResourceBundle(
|
|
const network::ResourceRequest& request,
|
|
mojo::PendingReceiver<network::mojom::URLLoader> loader,
|
|
const base::FilePath& resource_relative_path,
|
|
int resource_id,
|
|
scoped_refptr<net::HttpResponseHeaders> headers,
|
|
mojo::PendingRemote<network::mojom::URLLoaderClient> client) {
|
|
extensions::chrome_url_request_util::LoadResourceFromResourceBundle(
|
|
request, std::move(loader), resource_relative_path, resource_id,
|
|
std::move(headers), std::move(client));
|
|
}
|
|
|
|
namespace {
|
|
bool AllowCrossRendererResourceLoad(
|
|
const network::ResourceRequest& request,
|
|
network::mojom::RequestDestination destination,
|
|
ui::PageTransition page_transition,
|
|
int child_id,
|
|
bool is_incognito,
|
|
const extensions::Extension* extension,
|
|
const extensions::ExtensionSet& extensions,
|
|
const extensions::ProcessMap& process_map,
|
|
const GURL& upstream_url,
|
|
bool* allowed) {
|
|
if (extensions::url_request_util::AllowCrossRendererResourceLoad(
|
|
request, destination, page_transition, child_id, is_incognito,
|
|
extension, extensions, process_map, upstream_url, allowed)) {
|
|
return true;
|
|
}
|
|
|
|
// If there aren't any explicitly marked web accessible resources, the
|
|
// load should be allowed only if it is by DevTools. A close approximation is
|
|
// checking if the extension contains a DevTools page.
|
|
if (extension && !extensions::chrome_manifest_urls::GetDevToolsPage(extension)
|
|
.is_empty()) {
|
|
*allowed = true;
|
|
return true;
|
|
}
|
|
|
|
// Couldn't determine if the resource is allowed or not.
|
|
return false;
|
|
}
|
|
} // namespace
|
|
|
|
bool ElectronExtensionsBrowserClient::AllowCrossRendererResourceLoad(
|
|
const network::ResourceRequest& request,
|
|
network::mojom::RequestDestination destination,
|
|
ui::PageTransition page_transition,
|
|
int child_id,
|
|
bool is_incognito,
|
|
const extensions::Extension* extension,
|
|
const extensions::ExtensionSet& extensions,
|
|
const extensions::ProcessMap& process_map,
|
|
const GURL& upstream_url) {
|
|
bool allowed = false;
|
|
if (::electron::AllowCrossRendererResourceLoad(
|
|
request, destination, page_transition, child_id, is_incognito,
|
|
extension, extensions, process_map, upstream_url, &allowed)) {
|
|
return allowed;
|
|
}
|
|
|
|
// Couldn't determine if resource is allowed. Block the load.
|
|
return false;
|
|
}
|
|
|
|
PrefService* ElectronExtensionsBrowserClient::GetPrefServiceForContext(
|
|
BrowserContext* context) {
|
|
return static_cast<ElectronBrowserContext*>(context)->prefs();
|
|
}
|
|
|
|
void ElectronExtensionsBrowserClient::GetEarlyExtensionPrefsObservers(
|
|
content::BrowserContext* context,
|
|
std::vector<extensions::EarlyExtensionPrefsObserver*>* observers) const {}
|
|
|
|
extensions::ProcessManagerDelegate*
|
|
ElectronExtensionsBrowserClient::GetProcessManagerDelegate() const {
|
|
return process_manager_delegate_.get();
|
|
}
|
|
|
|
mojo::PendingRemote<network::mojom::URLLoaderFactory>
|
|
ElectronExtensionsBrowserClient::GetControlledFrameEmbedderURLLoader(
|
|
const url::Origin& app_origin,
|
|
int frame_tree_node_id,
|
|
content::BrowserContext* browser_context) {
|
|
return mojo::PendingRemote<network::mojom::URLLoaderFactory>();
|
|
}
|
|
|
|
std::unique_ptr<extensions::ExtensionHostDelegate>
|
|
ElectronExtensionsBrowserClient::
|
|
CreateExtensionHostDelegate() { // TODO(samuelmaddock):
|
|
return std::make_unique<extensions::ElectronExtensionHostDelegate>();
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::DidVersionUpdate(
|
|
BrowserContext* context) {
|
|
// TODO(jamescook): We might want to tell extensions when app_shell updates.
|
|
return false;
|
|
}
|
|
|
|
void ElectronExtensionsBrowserClient::PermitExternalProtocolHandler() {}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsInDemoMode() {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsScreensaverInDemoMode(
|
|
const std::string& app_id) {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsRunningInForcedAppMode() {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsAppModeForcedForApp(
|
|
const extensions::ExtensionId& extension_id) {
|
|
return false;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsLoggedInAsPublicAccount() {
|
|
return false;
|
|
}
|
|
|
|
extensions::ExtensionSystemProvider*
|
|
ElectronExtensionsBrowserClient::GetExtensionSystemFactory() {
|
|
return extensions::ElectronExtensionSystemFactory::GetInstance();
|
|
}
|
|
|
|
std::unique_ptr<extensions::RuntimeAPIDelegate>
|
|
ElectronExtensionsBrowserClient::CreateRuntimeAPIDelegate(
|
|
content::BrowserContext* context) const {
|
|
return std::make_unique<extensions::ElectronRuntimeAPIDelegate>(context);
|
|
}
|
|
|
|
const extensions::ComponentExtensionResourceManager*
|
|
ElectronExtensionsBrowserClient::GetComponentExtensionResourceManager() {
|
|
return resource_manager_.get();
|
|
}
|
|
|
|
void ElectronExtensionsBrowserClient::BroadcastEventToRenderers(
|
|
extensions::events::HistogramValue histogram_value,
|
|
const std::string& event_name,
|
|
base::Value::List args,
|
|
bool dispatch_to_off_the_record_profiles) {
|
|
if (!BrowserThread::CurrentlyOn(BrowserThread::UI)) {
|
|
content::GetUIThreadTaskRunner({})->PostTask(
|
|
FROM_HERE,
|
|
base::BindOnce(
|
|
&ElectronExtensionsBrowserClient::BroadcastEventToRenderers,
|
|
base::Unretained(this), histogram_value, event_name,
|
|
std::move(args), dispatch_to_off_the_record_profiles));
|
|
return;
|
|
}
|
|
|
|
for (auto const& [key, browser_context] :
|
|
ElectronBrowserContext::browser_context_map()) {
|
|
if (browser_context) {
|
|
extensions::EventRouter::Get(browser_context.get())
|
|
->BroadcastEvent(std::make_unique<extensions::Event>(
|
|
histogram_value, event_name, args.Clone()));
|
|
}
|
|
}
|
|
}
|
|
|
|
extensions::ExtensionCache*
|
|
ElectronExtensionsBrowserClient::GetExtensionCache() {
|
|
return extension_cache_.get();
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsBackgroundUpdateAllowed() {
|
|
return true;
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsMinBrowserVersionSupported(
|
|
const std::string& min_version) {
|
|
return true;
|
|
}
|
|
|
|
void ElectronExtensionsBrowserClient::SetAPIClientForTest(
|
|
extensions::ExtensionsAPIClient* api_client) {
|
|
api_client_.reset(api_client);
|
|
}
|
|
|
|
extensions::ExtensionWebContentsObserver*
|
|
ElectronExtensionsBrowserClient::GetExtensionWebContentsObserver(
|
|
content::WebContents* web_contents) {
|
|
return extensions::ElectronExtensionWebContentsObserver::FromWebContents(
|
|
web_contents);
|
|
}
|
|
|
|
extensions::KioskDelegate* ElectronExtensionsBrowserClient::GetKioskDelegate() {
|
|
if (!kiosk_delegate_)
|
|
kiosk_delegate_ = std::make_unique<ElectronKioskDelegate>();
|
|
return kiosk_delegate_.get();
|
|
}
|
|
|
|
bool ElectronExtensionsBrowserClient::IsLockScreenContext(
|
|
content::BrowserContext* context) {
|
|
return false;
|
|
}
|
|
|
|
std::string ElectronExtensionsBrowserClient::GetApplicationLocale() {
|
|
return ElectronBrowserClient::Get()->GetApplicationLocale();
|
|
}
|
|
|
|
std::string ElectronExtensionsBrowserClient::GetUserAgent() const {
|
|
return ElectronBrowserClient::Get()->GetUserAgent();
|
|
}
|
|
|
|
void ElectronExtensionsBrowserClient::RegisterBrowserInterfaceBindersForFrame(
|
|
mojo::BinderMapWithContext<content::RenderFrameHost*>* map,
|
|
content::RenderFrameHost* render_frame_host,
|
|
const extensions::Extension* extension) const {
|
|
PopulateExtensionFrameBinders(map, render_frame_host, extension);
|
|
}
|
|
|
|
} // namespace electron
|