electron/atom/browser/api/atom_api_power_monitor.h

48 lines
1.2 KiB
C
Raw Normal View History

// Copyright (c) 2013 GitHub, Inc.
2014-04-25 09:49:37 +00:00
// Use of this source code is governed by the MIT license that can be
2013-08-03 07:58:59 +00:00
// found in the LICENSE file.
#ifndef ATOM_BROWSER_API_ATOM_API_POWER_MONITOR_H_
#define ATOM_BROWSER_API_ATOM_API_POWER_MONITOR_H_
#include "atom/browser/api/trackable_object.h"
#include "atom/browser/lib/power_observer.h"
2013-08-03 07:58:59 +00:00
#include "base/compiler_specific.h"
2014-04-17 09:13:17 +00:00
#include "native_mate/handle.h"
2013-08-03 07:58:59 +00:00
namespace atom {
namespace api {
class PowerMonitor : public mate::TrackableObject<PowerMonitor>,
public PowerObserver {
2013-08-03 07:58:59 +00:00
public:
2015-05-22 11:11:22 +00:00
static v8::Local<v8::Value> Create(v8::Isolate* isolate);
2013-08-03 07:58:59 +00:00
2016-04-25 01:17:54 +00:00
static void BuildPrototype(v8::Isolate* isolate,
v8::Local<v8::FunctionTemplate> prototype);
2016-04-25 01:17:54 +00:00
2013-08-03 07:58:59 +00:00
protected:
2016-04-25 01:17:54 +00:00
explicit PowerMonitor(v8::Isolate* isolate);
~PowerMonitor() override;
2014-04-17 09:13:17 +00:00
// base::PowerObserver implementations:
2015-01-10 01:24:36 +00:00
void OnPowerStateChange(bool on_battery_power) override;
void OnSuspend() override;
void OnResume() override;
2013-08-03 07:58:59 +00:00
#if defined(OS_LINUX)
// atom::PowerObserver
bool OnShutdown() override;
#endif
2014-04-18 09:28:05 +00:00
private:
2013-08-03 07:58:59 +00:00
DISALLOW_COPY_AND_ASSIGN(PowerMonitor);
};
} // namespace api
} // namespace atom
#endif // ATOM_BROWSER_API_ATOM_API_POWER_MONITOR_H_