07e6b34a07
* chore: bump chromium in DEPS to 128.0.6571.0 * 5636652: [4/n] Introduce RenderInputRouterClient and move InputRouterClient implementation to RenderInputRouter. https://chromium-review.googlesource.com/c/chromium/src/+/5636652 * 5655811: Revert "Reland "Reland "Add toolchains without PartitionAlloc-Everywhere for dump_syms et al""" https://chromium-review.googlesource.com/c/chromium/src/+/5655811 * 5581006: [tracing] Forward startup tracing config as shmem https://chromium-review.googlesource.com/c/chromium/src/+/5581006 * chore: fixup patch indices * 5608450: [Views AX] Move Image Auto Captioning strings to ui/ https://chromium-review.googlesource.com/c/chromium/src/+/5608450 * 5648900: [Extensions] Move ExtensionAPIEnabledForServiceWorkerScript() https://chromium-review.googlesource.com/c/chromium/src/+/5648900 * 5651681: Remove Web Speech API profanity masking https://chromium-review.googlesource.com/c/chromium/src/+/5651681 * 5651361: `content::RenderFrame::GetBrowserInterfaceBroker`: return a const-ref. https://chromium-review.googlesource.com/c/chromium/src/+/5651361 * 5604943: Start capture of toolbar after gesture end events are received https://chromium-review.googlesource.com/c/chromium/src/+/5604943 * 5624392: [BRP] Enforce raw_ptr/ref in Renderer code https://chromium-review.googlesource.com/c/chromium/src/+/5624392 * 5659259: Portals: Remove WebContentsView::TransferDragSecurityInfo https://chromium-review.googlesource.com/c/chromium/src/+/5659259 * 5230721: Move ComposeStatus to components/compose https://chromium-review.googlesource.com/c/chromium/src/+/5230721 * 5647894: [api] Cleanup usages of v8::ReturnValue<void>::Set[NonEmpty](..) https://chromium-review.googlesource.com/c/v8/v8/+/5647894 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
52 lines
1.8 KiB
C++
52 lines
1.8 KiB
C++
// Copyright (c) 2017 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_RENDERER_ELECTRON_RENDER_FRAME_OBSERVER_H_
|
|
#define ELECTRON_SHELL_RENDERER_ELECTRON_RENDER_FRAME_OBSERVER_H_
|
|
|
|
#include <string>
|
|
|
|
#include "content/public/renderer/render_frame_observer.h"
|
|
#include "ipc/ipc_platform_file.h"
|
|
#include "third_party/blink/public/web/web_local_frame.h"
|
|
|
|
namespace electron {
|
|
|
|
class RendererClientBase;
|
|
|
|
// Helper class to forward the messages to the client.
|
|
class ElectronRenderFrameObserver : private content::RenderFrameObserver {
|
|
public:
|
|
ElectronRenderFrameObserver(content::RenderFrame* frame,
|
|
RendererClientBase* renderer_client);
|
|
|
|
// disable copy
|
|
ElectronRenderFrameObserver(const ElectronRenderFrameObserver&) = delete;
|
|
ElectronRenderFrameObserver& operator=(const ElectronRenderFrameObserver&) =
|
|
delete;
|
|
|
|
private:
|
|
// content::RenderFrameObserver:
|
|
void DidClearWindowObject() override;
|
|
void DidInstallConditionalFeatures(v8::Handle<v8::Context> context,
|
|
int world_id) override;
|
|
void WillReleaseScriptContext(v8::Local<v8::Context> context,
|
|
int world_id) override;
|
|
void OnDestruct() override;
|
|
void DidMeaningfulLayout(blink::WebMeaningfulLayout layout_type) override;
|
|
|
|
[[nodiscard]] bool ShouldNotifyClient(int world_id) const;
|
|
|
|
void CreateIsolatedWorldContext();
|
|
void OnTakeHeapSnapshot(IPC::PlatformFileForTransit file_handle,
|
|
const std::string& channel);
|
|
|
|
bool has_delayed_node_initialization_ = false;
|
|
raw_ptr<content::RenderFrame> render_frame_;
|
|
raw_ptr<RendererClientBase> renderer_client_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_RENDERER_ELECTRON_RENDER_FRAME_OBSERVER_H_
|