mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: bump chromium in DEPS to 147.0.7727.2 * chore: bump chromium in DEPS to 148.0.7728.0 * chore: bump chromium in DEPS to 148.0.7729.0 * chore: bump chromium in DEPS to 148.0.7730.0 * chore: bump chromium in DEPS to 148.0.7732.0 * chore: update WrappablePointerTag patch Refs https://chromium-review.googlesource.com/c/chromium/src/+/7641766 * chore: update custom protocol patch for removed code Refs https://chromium-review.googlesource.com/c/chromium/src/+/7653454 * chore: update patches * fix: cleanup removed CHILD_PLUGIN code Refs https://chromium-review.googlesource.com/c/chromium/src/+/7653455 * fix: move from int to ChildProcessId Refs https://chromium-review.googlesource.com/c/chromium/src/+/7621912 * fix: update extensions CreateTab signature Refs https://chromium-review.googlesource.com/c/chromium/src/+/7644389 * fix: draggable hit region test interface update for mac windows Refs https://chromium-review.googlesource.com/c/chromium/src/+/7655245 * chore: bump chromium in DEPS to 148.0.7733.0 * feat: restore macos child plugin process Refs https://chromium-review.googlesource.com/c/chromium/src/+/7653455 * fixup! chore: merge main * chore: update patches * fix: replace clipboard IsFormatAvailable with async GetAllAvailableFormats Refs https://chromium-review.googlesource.com/c/chromium/src/+/7631097 Async API pending RFC https://github.com/electron/rfcs/pull/19 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Samuel Maddock <samuelmaddock@electronjs.org>
71 lines
2.3 KiB
C++
71 lines
2.3 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_extension_host_delegate.h"
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <utility>
|
|
|
|
#include "extensions/browser/media_capture_util.h"
|
|
#include "shell/browser/api/electron_api_web_contents.h"
|
|
#include "shell/browser/extensions/electron_extension_web_contents_observer.h"
|
|
#include "v8/include/v8.h"
|
|
|
|
namespace extensions {
|
|
|
|
ElectronExtensionHostDelegate::ElectronExtensionHostDelegate() = default;
|
|
|
|
ElectronExtensionHostDelegate::~ElectronExtensionHostDelegate() = default;
|
|
|
|
void ElectronExtensionHostDelegate::OnExtensionHostCreated(
|
|
content::WebContents* web_contents) {
|
|
ElectronExtensionWebContentsObserver::CreateForWebContents(web_contents);
|
|
v8::Isolate* isolate = v8::Isolate::GetCurrent();
|
|
v8::HandleScope scope(isolate);
|
|
electron::api::WebContents::FromOrCreate(isolate, web_contents);
|
|
}
|
|
|
|
void ElectronExtensionHostDelegate::CreateTab(
|
|
std::unique_ptr<content::WebContents> web_contents,
|
|
const GURL& target_url,
|
|
const ExtensionId& extension_id,
|
|
WindowOpenDisposition disposition,
|
|
const blink::mojom::WindowFeatures& window_features,
|
|
bool user_gesture) {
|
|
// TODO(jamescook): Should app_shell support opening popup windows?
|
|
NOTREACHED();
|
|
}
|
|
|
|
void ElectronExtensionHostDelegate::ProcessMediaAccessRequest(
|
|
content::WebContents* web_contents,
|
|
const content::MediaStreamRequest& request,
|
|
content::MediaResponseCallback callback,
|
|
const Extension* extension) {
|
|
// Allow access to the microphone and/or camera.
|
|
media_capture_util::GrantMediaStreamRequest(web_contents, request,
|
|
std::move(callback), extension);
|
|
}
|
|
|
|
bool ElectronExtensionHostDelegate::CheckMediaAccessPermission(
|
|
content::RenderFrameHost* render_frame_host,
|
|
const url::Origin& security_origin,
|
|
blink::mojom::MediaStreamType type,
|
|
const Extension* extension) {
|
|
media_capture_util::VerifyMediaAccessPermission(type, extension);
|
|
return true;
|
|
}
|
|
|
|
content::PictureInPictureResult
|
|
ElectronExtensionHostDelegate::EnterPictureInPicture(
|
|
content::WebContents* web_contents) {
|
|
NOTREACHED();
|
|
}
|
|
|
|
void ElectronExtensionHostDelegate::ExitPictureInPicture() {
|
|
NOTREACHED();
|
|
}
|
|
|
|
} // namespace extensions
|