2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
2012-01-20 07:24:00 +04:00
|
|
|
#ifndef mozilla_dom_power_PowerManagerService_h
|
|
|
|
#define mozilla_dom_power_PowerManagerService_h
|
|
|
|
|
2012-03-07 15:03:25 +04:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsTArray.h"
|
2016-01-12 21:16:59 +03:00
|
|
|
#include "nsIDOMWakeLockListener.h"
|
2012-01-20 07:24:00 +04:00
|
|
|
#include "nsIPowerManagerService.h"
|
2018-08-13 04:57:50 +03:00
|
|
|
#include "mozilla/HalWakeLockInformation.h"
|
2012-07-26 23:33:45 +04:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2014-01-07 16:16:07 +04:00
|
|
|
#include "mozilla/dom/WakeLock.h"
|
2012-01-20 07:24:00 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
2013-02-15 00:41:30 +04:00
|
|
|
|
|
|
|
class ContentParent;
|
|
|
|
|
2012-01-20 07:24:00 +04:00
|
|
|
namespace power {
|
|
|
|
|
|
|
|
class PowerManagerService : public nsIPowerManagerService,
|
2018-08-13 04:57:50 +03:00
|
|
|
public hal::WakeLockObserver {
|
2012-01-20 07:24:00 +04:00
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPOWERMANAGERSERVICE
|
|
|
|
|
2020-03-04 12:08:09 +03:00
|
|
|
PowerManagerService() = default;
|
2016-01-12 21:16:59 +03:00
|
|
|
|
2012-10-02 11:26:32 +04:00
|
|
|
static already_AddRefed<PowerManagerService> GetInstance();
|
2012-03-07 15:03:25 +04:00
|
|
|
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
// Implement WakeLockObserver
|
2015-03-21 19:28:04 +03:00
|
|
|
void Notify(const hal::WakeLockInformation& aWakeLockInfo) override;
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
already_AddRefed<WakeLock> NewWakeLock(const nsAString& aTopic,
|
|
|
|
nsPIDOMWindowInner* aWindow,
|
2014-01-07 16:16:07 +04:00
|
|
|
mozilla::ErrorResult& aRv);
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2018-11-30 13:46:48 +03:00
|
|
|
private:
|
2012-03-07 15:03:25 +04:00
|
|
|
~PowerManagerService();
|
|
|
|
|
|
|
|
void ComputeWakeLockState(const hal::WakeLockInformation& aWakeLockInfo,
|
|
|
|
nsAString& aState);
|
|
|
|
|
2012-07-26 23:33:45 +04:00
|
|
|
static StaticRefPtr<PowerManagerService> sSingleton;
|
2012-03-07 15:03:25 +04:00
|
|
|
|
2016-01-12 21:16:59 +03:00
|
|
|
nsTArray<nsCOMPtr<nsIDOMMozWakeLockListener>> mWakeLockListeners;
|
2012-01-20 07:24:00 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace power
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_power_PowerManagerService_h
|