![electron-roller[bot]](/assets/img/avatar_default.png)
* chore: bump chromium in DEPS to 102.0.4975.0 * chore: bump chromium in DEPS to 102.0.4977.0 * chore: update patches * Remove parameter of OnGpuProcessCrashed()3543396
* hid: Add exclusionFilters option to requestDevice3478175
* chore: bump chromium in DEPS to 102.0.4979.0 * chore: bump chromium in DEPS to 102.0.4981.0 * chore: update patches * Deny notification/push permission for documents in non-standard StoragePartitions3257305
* Improve FrameTreeNode tracking in URLLoaderNetworkContext3341866
* fixup! Remove parameter of OnGpuProcessCrashed() * chore: fix lint * Reland "Use gfx::Insets[F]::TLBR() and gfx::Insets[F]::VH() in the rest of Chrome"3554236
* chore: bump chromium in DEPS to 102.0.4983.0 * Ensure EyeDropperView does not access a destroyed window3561542
* ci: don't delete dawn .git directory 83901: Adds a generated file with the dawn git hash encoded at build time. | https://dawn-review.googlesource.com/c/dawn/+/83901 * ci: update Windows toolchain 3550827: New toolchain for Windows 10 20348 SDK |3550827
* chore: bump chromium in DEPS to 102.0.4985.0 * chore: update patches * chore: bump chromium in DEPS to 102.0.4987.0 * chore: update patches * 3563432: codehealth: remove uses of DictionaryValue in cbui/webui3563432
* chore: update patches after rebase * Use gfx::Insets[F]::TLBR() and gfx::Insets[F]::VH() in the rest of Chrome3554236
* 3565724: Preserve "proper method names" as-is in error.stack.3565724
* chore: bump chromium in DEPS to 102.0.4989.0 * chore: update patches * fixup ci: don't delete dawn .git directory for Windows * 3560843: Remove multi-parameter version of gfx::Rect[F]::Inset()3560843
* 3572711: Remove unused IDS_PDF_TOOLTIP_ROTATE_CW resource.3572711
* 3572926: Reland "[Sysroot] Switch to Debian Bullseye stable"3572926
* build: fixup sysroots with electron specific dependencies * fixup Remove multi-parameter version of gfx::Rect[F]::Inset() * fixup 3565724: Preserve "proper method names" as-is in error.stack. * fixup Remove multi-parameter version of gfx::Rect[F]::Inset() * test: add spec for navigator.hid.requestDevice({ exclusionFilters: [...] } * fixup 3565724: Preserve "proper method names" as-is in error.stack. * ci: use python3 to get the windows toolchain profile 3525960: Explicitly run everything with python3 |3525960
* chore: add diagnostic logging * fix: try calling process.crash() * chore: remove logging Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: deepak1556 <hop2deep@gmail.com> Co-authored-by: John Kleinschmidt <jkleinsc@electronjs.org> Co-authored-by: PatchUp <73610968+patchup[bot]@users.noreply.github.com> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com>
90 lines
3.6 KiB
C++
90 lines
3.6 KiB
C++
// Copyright 2019 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_BROWSER_HID_ELECTRON_HID_DELEGATE_H_
|
|
#define ELECTRON_SHELL_BROWSER_HID_ELECTRON_HID_DELEGATE_H_
|
|
|
|
#include <memory>
|
|
#include <string>
|
|
#include <unordered_map>
|
|
#include <vector>
|
|
|
|
#include "base/observer_list.h"
|
|
#include "base/scoped_observation.h"
|
|
#include "content/public/browser/hid_delegate.h"
|
|
#include "shell/browser/hid/hid_chooser_context.h"
|
|
|
|
namespace electron {
|
|
|
|
class HidChooserController;
|
|
|
|
class ElectronHidDelegate : public content::HidDelegate,
|
|
public HidChooserContext::DeviceObserver {
|
|
public:
|
|
ElectronHidDelegate();
|
|
ElectronHidDelegate(ElectronHidDelegate&) = delete;
|
|
ElectronHidDelegate& operator=(ElectronHidDelegate&) = delete;
|
|
~ElectronHidDelegate() override;
|
|
|
|
// content::HidDelegate:
|
|
std::unique_ptr<content::HidChooser> RunChooser(
|
|
content::RenderFrameHost* render_frame_host,
|
|
std::vector<blink::mojom::HidDeviceFilterPtr> filters,
|
|
std::vector<blink::mojom::HidDeviceFilterPtr> exclusion_filters,
|
|
content::HidChooser::Callback callback) override;
|
|
bool CanRequestDevicePermission(
|
|
content::RenderFrameHost* render_frame_host) override;
|
|
bool HasDevicePermission(content::RenderFrameHost* render_frame_host,
|
|
const device::mojom::HidDeviceInfo& device) override;
|
|
void RevokeDevicePermission(
|
|
content::RenderFrameHost* render_frame_host,
|
|
const device::mojom::HidDeviceInfo& device) override;
|
|
device::mojom::HidManager* GetHidManager(
|
|
content::RenderFrameHost* render_frame_host) override;
|
|
void AddObserver(content::RenderFrameHost* render_frame_host,
|
|
content::HidDelegate::Observer* observer) override;
|
|
void RemoveObserver(content::RenderFrameHost* render_frame_host,
|
|
content::HidDelegate::Observer* observer) override;
|
|
const device::mojom::HidDeviceInfo* GetDeviceInfo(
|
|
content::RenderFrameHost* render_frame_host,
|
|
const std::string& guid) override;
|
|
bool IsFidoAllowedForOrigin(content::RenderFrameHost* render_frame_host,
|
|
const url::Origin& origin) override;
|
|
|
|
// HidChooserContext::DeviceObserver:
|
|
void OnDeviceAdded(const device::mojom::HidDeviceInfo&) override;
|
|
void OnDeviceRemoved(const device::mojom::HidDeviceInfo&) override;
|
|
void OnDeviceChanged(const device::mojom::HidDeviceInfo&) override;
|
|
void OnHidManagerConnectionError() override;
|
|
void OnHidChooserContextShutdown() override;
|
|
|
|
void DeleteControllerForFrame(content::RenderFrameHost* render_frame_host);
|
|
|
|
private:
|
|
HidChooserController* ControllerForFrame(
|
|
content::RenderFrameHost* render_frame_host);
|
|
|
|
HidChooserController* AddControllerForFrame(
|
|
content::RenderFrameHost* render_frame_host,
|
|
std::vector<blink::mojom::HidDeviceFilterPtr> filters,
|
|
std::vector<blink::mojom::HidDeviceFilterPtr> exclusion_filters,
|
|
content::HidChooser::Callback callback);
|
|
|
|
base::ScopedObservation<HidChooserContext,
|
|
HidChooserContext::DeviceObserver,
|
|
&HidChooserContext::AddDeviceObserver,
|
|
&HidChooserContext::RemoveDeviceObserver>
|
|
device_observation_{this};
|
|
base::ObserverList<content::HidDelegate::Observer> observer_list_;
|
|
|
|
std::unordered_map<content::RenderFrameHost*,
|
|
std::unique_ptr<HidChooserController>>
|
|
controller_map_;
|
|
|
|
base::WeakPtrFactory<ElectronHidDelegate> weak_factory_{this};
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_HID_ELECTRON_HID_DELEGATE_H_
|