2012-01-19 19:24:00 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07: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-19 19:24:00 -08:00
|
|
|
#ifndef mozilla_dom_power_PowerManagerService_h
|
|
|
|
#define mozilla_dom_power_PowerManagerService_h
|
|
|
|
|
2012-03-07 03:03:25 -08:00
|
|
|
#include "nsCOMPtr.h"
|
|
|
|
#include "nsDataHashtable.h"
|
|
|
|
#include "nsHashKeys.h"
|
|
|
|
#include "nsTArray.h"
|
2012-01-19 19:24:00 -08:00
|
|
|
#include "nsIPowerManagerService.h"
|
2012-03-07 03:03:25 -08:00
|
|
|
#include "mozilla/Observer.h"
|
|
|
|
#include "Types.h"
|
2012-07-26 12:33:45 -07:00
|
|
|
#include "mozilla/StaticPtr.h"
|
2012-01-19 19:24:00 -08:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
namespace power {
|
|
|
|
|
|
|
|
class PowerManagerService
|
|
|
|
: public nsIPowerManagerService
|
2012-03-07 03:03:25 -08:00
|
|
|
, public WakeLockObserver
|
2012-01-19 19:24:00 -08:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPOWERMANAGERSERVICE
|
|
|
|
|
2012-10-02 00:26:32 -07:00
|
|
|
static already_AddRefed<PowerManagerService> GetInstance();
|
2012-03-07 03:03:25 -08:00
|
|
|
|
|
|
|
void Init();
|
|
|
|
|
|
|
|
// Implement WakeLockObserver
|
|
|
|
void Notify(const hal::WakeLockInformation& aWakeLockInfo);
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
|
|
|
~PowerManagerService();
|
|
|
|
|
|
|
|
void ComputeWakeLockState(const hal::WakeLockInformation& aWakeLockInfo,
|
|
|
|
nsAString &aState);
|
|
|
|
|
2012-09-26 02:12:33 -07:00
|
|
|
void SyncProfile();
|
|
|
|
|
2012-07-26 12:33:45 -07:00
|
|
|
static StaticRefPtr<PowerManagerService> sSingleton;
|
2012-03-07 03:03:25 -08:00
|
|
|
|
|
|
|
nsTArray<nsCOMPtr<nsIDOMMozWakeLockListener> > mWakeLockListeners;
|
2012-10-02 00:26:32 -07:00
|
|
|
|
|
|
|
int32_t mWatchdogTimeoutSecs;
|
2012-01-19 19:24:00 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace power
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif // mozilla_dom_power_PowerManagerService_h
|