* chore: bump chromium in DEPS to 130.0.6723.4 * chore: bump chromium in DEPS to 131.0.6724.0 * chore: update patches * chore: update libc++ filenames * 5844369: controlledframe: Disable Web Bluetooth for <webview> & <controlledframe> https://chromium-review.googlesource.com/c/chromium/src/+/5844369 * (multiple CLs): Use an opaque type for FrameTreeNode IDs 5807683: Use an opaque type for FrameTreeNode IDs, part 1 | https://chromium-review.googlesource.com/c/chromium/src/+/5807683 5829746: Use an opaque type for FrameTreeNode IDs, part 2 | https://chromium-review.googlesource.com/c/chromium/src/+/5829746 5836903: Use an opaque type for FrameTreeNode IDs, part 7 | https://chromium-review.googlesource.com/c/chromium/src/+/5836903 5837249: Use an opaque type for FrameTreeNode IDs, part 8 | https://chromium-review.googlesource.com/c/chromium/src/+/5837249 5836564: Use an opaque type for FrameTreeNode IDs, part 12 | https://chromium-review.googlesource.com/c/chromium/src/+/5836564 5837180: Use an opaque type for FrameTreeNode IDs, part 15 | https://chromium-review.googlesource.com/c/chromium/src/+/5837180 * 5822889: [task] Make GetForegroundTaskRunner non-virtual https://chromium-review.googlesource.com/c/v8/v8/+/5822889 * 5833297: Remove unused inner WebContents attach params https://chromium-review.googlesource.com/c/chromium/src/+/5833297 * 5806403: Shift PowerMonitor to non static https://chromium-review.googlesource.com/c/chromium/src/+/5806403 * 5666874: [3/N] Remove old OnPowerChange in PowerObserver https://chromium-review.googlesource.com/c/chromium/src/+/5666874 * 5829085: [v8] Differentiate between UserVisible and BestEffort task runners https://chromium-review.googlesource.com/c/chromium/src/+/5829085 * 5791112: [webrtc] Use `c/b/permissions/system` for system permissions https://chromium-review.googlesource.com/c/chromium/src/+/5791112 * 5825636: [Extensions] Create WebContentsObservers with ExtensionsBrowserClient https://chromium-review.googlesource.com/c/chromium/src/+/5825636 * fixup! (multiple CLs): Use an opaque type for FrameTreeNode IDs * fixup! 5791112: [webrtc] Use `c/b/permissions/system` for system permissions https://chromium-review.googlesource.com/c/chromium/src/+/5791112 * chore: bump chromium in DEPS to 131.0.6726.0 * chore: update patches * chore: update libc++ filenames * 5858119: Declutter: Allow opening to a specific feature https://chromium-review.googlesource.com/c/chromium/src/+/5858119 * fix: macOS SDK 15 error Not sure exactly what changed in the upgrade to macOS SDK 15, but it triggered a new error: ``` electron/shell/browser/ui/message_box_mac.mm:84:7: error: multiple methods named 'highlight:' found with mismatched result, parameter type or attributes ``` The `highlight:` selector a few lines down was ambiguous because the object type of the `NSArray` was not specified. Specifying `NSButton` as the element type makes the selector unambiguous for type checking. * 5854143: [File Download Access Prevention] Obfuscate download file for enterprise deep scan https://chromium-review.googlesource.com/c/chromium/src/+/5854143 * 5854811: Use kNotAllowedError instead of kSecurityError for Web MIDI https://chromium-review.googlesource.com/c/chromium/src/+/5854811 * chore: bump chromium in DEPS to 131.0.6728.0 * chore: update patches * disable invalid test * chore: bump chromium in DEPS to 131.0.6730.0 * chore: update patches * update build tools target commit for new macOS SDK * chore: update libc++ file names * chore: bump chromium in DEPS to 131.0.6732.0 * chore: bump chromium in DEPS to 131.0.6734.0 * 5856527: [UI] Use mojo enum for `WindowShowState` in ui/ https://chromium-review.googlesource.com/c/chromium/src/+/5856527 * chore: update build-tools sha to include macOD 15.0 SDK --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: clavin <clavin@electronjs.org> Co-authored-by: Shelley Vohr <shelley.vohr@gmail.com> Co-authored-by: alice <alice@makenotion.com>
		
			
				
	
	
		
			105 lines
		
	
	
	
		
			4.1 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			105 lines
		
	
	
	
		
			4.1 KiB
			
		
	
	
	
		
			C++
		
	
	
	
	
	
// Copyright (c) 2020 Microsoft, Inc.
 | 
						|
// Use of this source code is governed by the MIT license that can be
 | 
						|
// found in the LICENSE file.
 | 
						|
 | 
						|
#ifndef ELECTRON_SHELL_BROWSER_BLUETOOTH_ELECTRON_BLUETOOTH_DELEGATE_H_
 | 
						|
#define ELECTRON_SHELL_BROWSER_BLUETOOTH_ELECTRON_BLUETOOTH_DELEGATE_H_
 | 
						|
 | 
						|
#include <memory>
 | 
						|
#include <optional>
 | 
						|
#include <string>
 | 
						|
#include <vector>
 | 
						|
 | 
						|
#include "base/memory/weak_ptr.h"
 | 
						|
#include "base/values.h"
 | 
						|
#include "content/public/browser/bluetooth_delegate.h"
 | 
						|
#include "third_party/blink/public/mojom/bluetooth/web_bluetooth.mojom-forward.h"
 | 
						|
 | 
						|
namespace blink {
 | 
						|
class WebBluetoothDeviceId;
 | 
						|
}
 | 
						|
 | 
						|
namespace content {
 | 
						|
class RenderFrameHost;
 | 
						|
}
 | 
						|
 | 
						|
namespace device {
 | 
						|
class BluetoothDevice;
 | 
						|
class BluetoothUUID;
 | 
						|
}  // namespace device
 | 
						|
 | 
						|
namespace electron {
 | 
						|
 | 
						|
// Provides an interface for managing device permissions for Web Bluetooth and
 | 
						|
// Web Bluetooth Scanning API. This is the Electron-specific implementation of
 | 
						|
// the BluetoothDelegate.
 | 
						|
class ElectronBluetoothDelegate : public content::BluetoothDelegate {
 | 
						|
 public:
 | 
						|
  ElectronBluetoothDelegate();
 | 
						|
  ~ElectronBluetoothDelegate() override;
 | 
						|
 | 
						|
  // Move-only class.
 | 
						|
  ElectronBluetoothDelegate(const ElectronBluetoothDelegate&) = delete;
 | 
						|
  ElectronBluetoothDelegate& operator=(const ElectronBluetoothDelegate&) =
 | 
						|
      delete;
 | 
						|
 | 
						|
  // BluetoothDelegate implementation:
 | 
						|
  std::unique_ptr<content::BluetoothChooser> RunBluetoothChooser(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const content::BluetoothChooser::EventHandler& event_handler) override;
 | 
						|
 | 
						|
  std::unique_ptr<content::BluetoothScanningPrompt> ShowBluetoothScanningPrompt(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const content::BluetoothScanningPrompt::EventHandler& event_handler)
 | 
						|
      override;
 | 
						|
  void ShowDevicePairPrompt(content::RenderFrameHost* frame,
 | 
						|
                            const std::u16string& device_identifier,
 | 
						|
                            PairPromptCallback callback,
 | 
						|
                            PairingKind pairing_kind,
 | 
						|
                            const std::optional<std::u16string>& pin) override;
 | 
						|
  blink::WebBluetoothDeviceId GetWebBluetoothDeviceId(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const std::string& device_address) override;
 | 
						|
  std::string GetDeviceAddress(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const blink::WebBluetoothDeviceId& device_id) override;
 | 
						|
  blink::WebBluetoothDeviceId AddScannedDevice(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const std::string& device_address) override;
 | 
						|
  blink::WebBluetoothDeviceId GrantServiceAccessPermission(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const device::BluetoothDevice* device,
 | 
						|
      const blink::mojom::WebBluetoothRequestDeviceOptions* options) override;
 | 
						|
  bool HasDevicePermission(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const blink::WebBluetoothDeviceId& device_id) override;
 | 
						|
  void RevokeDevicePermissionWebInitiated(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const blink::WebBluetoothDeviceId& device_id) override;
 | 
						|
  bool MayUseBluetooth(content::RenderFrameHost* frame) override;
 | 
						|
  bool IsAllowedToAccessService(content::RenderFrameHost* frame,
 | 
						|
                                const blink::WebBluetoothDeviceId& device_id,
 | 
						|
                                const device::BluetoothUUID& service) override;
 | 
						|
  bool IsAllowedToAccessAtLeastOneService(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const blink::WebBluetoothDeviceId& device_id) override;
 | 
						|
  bool IsAllowedToAccessManufacturerData(
 | 
						|
      content::RenderFrameHost* frame,
 | 
						|
      const blink::WebBluetoothDeviceId& device_id,
 | 
						|
      uint16_t manufacturer_code) override;
 | 
						|
  std::vector<blink::mojom::WebBluetoothDevicePtr> GetPermittedDevices(
 | 
						|
      content::RenderFrameHost* frame) override;
 | 
						|
  void AddFramePermissionObserver(FramePermissionObserver* observer) override;
 | 
						|
  void RemoveFramePermissionObserver(
 | 
						|
      FramePermissionObserver* observer) override;
 | 
						|
 | 
						|
 private:
 | 
						|
  void OnDevicePairPromptResponse(PairPromptCallback callback,
 | 
						|
                                  base::Value::Dict response);
 | 
						|
 | 
						|
  base::WeakPtrFactory<ElectronBluetoothDelegate> weak_factory_{this};
 | 
						|
};
 | 
						|
 | 
						|
}  // namespace electron
 | 
						|
 | 
						|
#endif  // ELECTRON_SHELL_BROWSER_BLUETOOTH_ELECTRON_BLUETOOTH_DELEGATE_H_
 |