mirror of
https://github.com/electron/electron.git
synced 2026-04-10 03:01:51 -04:00
* chore: bump chromium in DEPS to 87.0.4280.6 * chore: bump chromium in DEPS to 87.0.4280.11 * chore: update patches * Add deprecated_default_sources_assignment_filter variable https://chromium-review.googlesource.com/c/chromium/src/+/2416496 * 2426564: Remove global sources assignment filter value https://chromium-review.googlesource.com/c/chromium/src/+/2426564 * Remove set_sources_filter import * chore: fixup printing patch * Add DragOperation and AllowedDragOperations Mojo types https://chromium-review.googlesource.com/c/chromium/src/+/2196167 * Add DragOperation and AllowedDragOperations Mojo types https://chromium-review.googlesource.com/c/chromium/src/+/2196167 * Remove several references to BrowserPlugin from content https://chromium-review.googlesource.com/c/chromium/src/+/2401031 * Remove SurfaceEmbeddingTime and LocalSurfaceIdAllocation https://chromium-review.googlesource.com/c/chromium/src/+/2415128 * Remove several references to BrowserPlugin from content https://chromium-review.googlesource.com/c/chromium/src/+/2401031 * Service Manager embedders switches have been removed or moved Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2440974 * Remove SurfaceEmbeddingTime and LocalSurfaceIdAllocation https://chromium-review.googlesource.com/c/chromium/src/+/2415128 * [XProto] Remove usage of Xlib Visuals https://chromium-review.googlesource.com/c/chromium/src/+/2429933 * Implement tabs.removeCSS in electrons TabsExecuteScriptFunction Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2250506 * Remove lossy ConvertSizeToPixel() methods https://chromium-review.googlesource.com/c/chromium/src/+/2419534 * Remove all keyboard related usage of Xlib Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2436787 * fix: use parent namespace for zygote switches * ConvertRectToPixel methods have been removed Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2429143 * impl SortingLSH service Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2425327 * chore: update patches * chore: fix servicemanager removed namespace * chore: revert removed methods * chore: update patches * ExtensionURLLoaderFactory is now owned by its receivers Refs: https://chromium-review.googlesource.com/c/chromium/src/+/2357523 * chore: fix linting * Skip Angle manifest file https://chromium-review.googlesource.com/c/angle/angle/+/2425197 Co-authored-by: Samuel Attard <samuel.r.attard@gmail.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: Jeremy Rose <nornagon@nornagon.net>
59 lines
1.8 KiB
C++
59 lines
1.8 KiB
C++
// Copyright (c) 2015 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef SHELL_BROWSER_WEB_VIEW_GUEST_DELEGATE_H_
|
|
#define SHELL_BROWSER_WEB_VIEW_GUEST_DELEGATE_H_
|
|
|
|
#include "content/public/browser/browser_plugin_guest_delegate.h"
|
|
#include "shell/browser/web_contents_zoom_controller.h"
|
|
|
|
namespace electron {
|
|
|
|
namespace api {
|
|
class WebContents;
|
|
}
|
|
|
|
class WebViewGuestDelegate : public content::BrowserPluginGuestDelegate,
|
|
public WebContentsZoomController::Observer {
|
|
public:
|
|
WebViewGuestDelegate(content::WebContents* embedder,
|
|
api::WebContents* api_web_contents);
|
|
~WebViewGuestDelegate() override;
|
|
|
|
// Attach to the iframe.
|
|
void AttachToIframe(content::WebContents* embedder_web_contents,
|
|
int embedder_frame_id);
|
|
void WillDestroy();
|
|
|
|
protected:
|
|
// content::BrowserPluginGuestDelegate:
|
|
content::WebContents* GetOwnerWebContents() final;
|
|
content::WebContents* CreateNewGuestWindow(
|
|
const content::WebContents::CreateParams& create_params) final;
|
|
|
|
// WebContentsZoomController::Observer:
|
|
void OnZoomLevelChanged(content::WebContents* web_contents,
|
|
double level,
|
|
bool is_temporary) override;
|
|
void OnZoomControllerWebContentsDestroyed() override;
|
|
|
|
private:
|
|
void ResetZoomController();
|
|
|
|
// The WebContents that attaches this guest view.
|
|
content::WebContents* embedder_web_contents_ = nullptr;
|
|
|
|
// The zoom controller of the embedder that is used
|
|
// to subscribe for zoom changes.
|
|
WebContentsZoomController* embedder_zoom_controller_ = nullptr;
|
|
|
|
api::WebContents* api_web_contents_ = nullptr;
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(WebViewGuestDelegate);
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // SHELL_BROWSER_WEB_VIEW_GUEST_DELEGATE_H_
|