![electron-roller[bot]](/assets/img/avatar_default.png)
* 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>5844369
* (multiple CLs): Use an opaque type for FrameTreeNode IDs 5807683: Use an opaque type for FrameTreeNode IDs, part 1 |5807683
5829746: Use an opaque type for FrameTreeNode IDs, part 2 |5829746
5836903: Use an opaque type for FrameTreeNode IDs, part 7 |5836903
5837249: Use an opaque type for FrameTreeNode IDs, part 8 |5837249
5836564: Use an opaque type for FrameTreeNode IDs, part 12 |5836564
5837180: Use an opaque type for FrameTreeNode IDs, part 15 |5837180
* 5822889: [task] Make GetForegroundTaskRunner non-virtual5822889
* 5833297: Remove unused inner WebContents attach params5833297
* 5806403: Shift PowerMonitor to non static5806403
* 5666874: [3/N] Remove old OnPowerChange in PowerObserver5666874
* 5829085: [v8] Differentiate between UserVisible and BestEffort task runners5829085
* 5791112: [webrtc] Use `c/b/permissions/system` for system permissions5791112
* 5825636: [Extensions] Create WebContentsObservers with ExtensionsBrowserClient5825636
* fixup! (multiple CLs): Use an opaque type for FrameTreeNode IDs * fixup! 5791112: [webrtc] Use `c/b/permissions/system` for system permissions5791112
* chore: bump chromium in DEPS to 131.0.6726.0 * chore: update patches * chore: update libc++ filenames * 5858119: Declutter: Allow opening to a specific feature5858119
* 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 scan5854143
* 5854811: Use kNotAllowedError instead of kSecurityError for Web MIDI5854811
* 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/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>
95 lines
2.9 KiB
C++
95 lines
2.9 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_BROWSER_API_ELECTRON_API_POWER_MONITOR_H_
|
|
#define ELECTRON_SHELL_BROWSER_API_ELECTRON_API_POWER_MONITOR_H_
|
|
|
|
#include "base/power_monitor/power_observer.h"
|
|
#include "gin/wrappable.h"
|
|
#include "shell/browser/event_emitter_mixin.h"
|
|
#include "shell/common/gin_helper/pinnable.h"
|
|
#include "ui/base/idle/idle.h"
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
#include "shell/browser/lib/power_observer_linux.h"
|
|
#endif
|
|
|
|
namespace electron::api {
|
|
|
|
class PowerMonitor final : public gin::Wrappable<PowerMonitor>,
|
|
public gin_helper::EventEmitterMixin<PowerMonitor>,
|
|
public gin_helper::Pinnable<PowerMonitor>,
|
|
private base::PowerStateObserver,
|
|
private base::PowerSuspendObserver,
|
|
private base::PowerThermalObserver {
|
|
public:
|
|
static v8::Local<v8::Value> Create(v8::Isolate* isolate);
|
|
|
|
// gin::Wrappable
|
|
static gin::WrapperInfo kWrapperInfo;
|
|
gin::ObjectTemplateBuilder GetObjectTemplateBuilder(
|
|
v8::Isolate* isolate) override;
|
|
const char* GetTypeName() override;
|
|
|
|
// disable copy
|
|
PowerMonitor(const PowerMonitor&) = delete;
|
|
PowerMonitor& operator=(const PowerMonitor&) = delete;
|
|
|
|
private:
|
|
explicit PowerMonitor(v8::Isolate* isolate);
|
|
~PowerMonitor() override;
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
void SetListeningForShutdown(bool);
|
|
#endif
|
|
|
|
// Called by native calles.
|
|
bool ShouldShutdown();
|
|
|
|
#if BUILDFLAG(IS_MAC) || BUILDFLAG(IS_WIN)
|
|
void InitPlatformSpecificMonitors();
|
|
#endif
|
|
|
|
// base::PowerStateObserver implementations:
|
|
void OnBatteryPowerStatusChange(
|
|
BatteryPowerStatus battery_power_status) override;
|
|
|
|
// base::PowerSuspendObserver implementations:
|
|
void OnSuspend() override;
|
|
void OnResume() override;
|
|
|
|
// base::PowerThermalObserver
|
|
void OnThermalStateChange(DeviceThermalState new_state) override;
|
|
void OnSpeedLimitChange(int speed_limit) override;
|
|
|
|
#if BUILDFLAG(IS_WIN)
|
|
// Static callback invoked when a message comes in to our messaging window.
|
|
static LRESULT CALLBACK WndProcStatic(HWND hwnd,
|
|
UINT message,
|
|
WPARAM wparam,
|
|
LPARAM lparam);
|
|
|
|
LRESULT CALLBACK WndProc(HWND hwnd,
|
|
UINT message,
|
|
WPARAM wparam,
|
|
LPARAM lparam);
|
|
|
|
// The window class of |window_|.
|
|
ATOM atom_;
|
|
|
|
// The handle of the module that contains the window procedure of |window_|.
|
|
HMODULE instance_;
|
|
|
|
// The window used for processing events.
|
|
HWND window_;
|
|
#endif
|
|
|
|
#if BUILDFLAG(IS_LINUX)
|
|
PowerObserverLinux power_observer_linux_{this};
|
|
#endif
|
|
};
|
|
|
|
} // namespace electron::api
|
|
|
|
#endif // ELECTRON_SHELL_BROWSER_API_ELECTRON_API_POWER_MONITOR_H_
|