![electron-roller[bot]](/assets/img/avatar_default.png)
* chore: bump chromium in DEPS to 124.0.6339.0 * chore: update patches * chore: bump chromium in DEPS to 124.0.6341.0 * chore: update patches * chore: bump chromium in DEPS to 124.0.6343.0 * chore: bump chromium in DEPS to 124.0.6345.0 * chore: update patches * build: temporarily patch out usage of reclient inputs cfg * chore: implement missing OnPortConnectedStateChanged Ref:5039155
* fix: move NativeHandlers in extensions to new RendererAPIProvider Ref:5332839
Ref:5334058
* chore: add missing websocket method * refactor: use std::erase instead of base::Erase Ref: https://issues.chromium.org/issues/40256229 * build: fix reclient inputs processor bug (workaround) * fix: delay extensions::Dispatcher construction * chore: bump chromium in DEPS to 124.0.6347.0 * chore: bump chromium in DEPS to 124.0.6349.0 * 5326217: [ViewsAX] Remove WebAXPlatformTreeManagerDelegate5326217
* 5347916: Get origin from parent for process-isolated srcdoc.5347916
* chore: patches fixup * 4866222: [api] Deprecate vector<v8::Local>, part 14866222
* 5337304: Remove DXDiag telemetry code.5337304
* 5328275: Implement watermark routing to the BrowserView5328275
* [libc++] Rename __fwd/hash.h to __fwd/functional.h and add reference_wrapper * chore: bump chromium in DEPS to 124.0.6351.0 * chore: update patches * 5342763: [object] Fast path for adding props with existing transition5342763
--------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: Samuel Attard <marshallofsound@electronjs.org> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
32 lines
1.1 KiB
C++
32 lines
1.1 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.
|
|
|
|
#ifndef ELECTRON_SHELL_RENDERER_EXTENSIONS_ELECTRON_EXTENSIONS_DISPATCHER_DELEGATE_H_
|
|
#define ELECTRON_SHELL_RENDERER_EXTENSIONS_ELECTRON_EXTENSIONS_DISPATCHER_DELEGATE_H_
|
|
|
|
#include <set>
|
|
#include <string>
|
|
|
|
#include "extensions/renderer/dispatcher_delegate.h"
|
|
|
|
class ElectronExtensionsDispatcherDelegate
|
|
: public extensions::DispatcherDelegate {
|
|
public:
|
|
ElectronExtensionsDispatcherDelegate();
|
|
~ElectronExtensionsDispatcherDelegate() override;
|
|
|
|
// disable copy
|
|
ElectronExtensionsDispatcherDelegate(
|
|
const ElectronExtensionsDispatcherDelegate&) = delete;
|
|
ElectronExtensionsDispatcherDelegate& operator=(
|
|
const ElectronExtensionsDispatcherDelegate&) = delete;
|
|
|
|
private:
|
|
// extensions::DispatcherDelegate implementation.
|
|
void RequireWebViewModules(extensions::ScriptContext* context) override;
|
|
void OnActiveExtensionsUpdated(
|
|
const std::set<std::string>& extension_ids) override;
|
|
};
|
|
|
|
#endif // ELECTRON_SHELL_RENDERER_EXTENSIONS_ELECTRON_EXTENSIONS_DISPATCHER_DELEGATE_H_
|