2010-06-03 20:56:36 +00:00
|
|
|
/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
|
|
|
/* vim:expandtab:shiftwidth=4:tabstop=4:
|
|
|
|
*/
|
2012-05-21 11:12:37 +00: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/. */
|
2010-06-03 20:56:36 +00:00
|
|
|
|
|
|
|
#ifndef nsIdleServiceAndroid_h__
|
|
|
|
#define nsIdleServiceAndroid_h__
|
|
|
|
|
|
|
|
#include "nsIdleService.h"
|
|
|
|
|
|
|
|
class nsIdleServiceAndroid : public nsIdleService
|
|
|
|
{
|
|
|
|
public:
|
2012-06-29 08:32:21 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2010-06-03 20:56:36 +00:00
|
|
|
|
2015-08-15 02:06:20 +00:00
|
|
|
bool PollIdleTime(uint32_t* aIdleTime) override;
|
2012-06-29 08:32:21 +00:00
|
|
|
|
|
|
|
static already_AddRefed<nsIdleServiceAndroid> GetInstance()
|
|
|
|
{
|
2015-10-18 05:24:48 +00:00
|
|
|
RefPtr<nsIdleService> idleService = nsIdleService::GetInstance();
|
2012-06-29 08:32:21 +00:00
|
|
|
if (!idleService) {
|
|
|
|
idleService = new nsIdleServiceAndroid();
|
|
|
|
}
|
|
|
|
|
2013-04-28 11:52:10 +00:00
|
|
|
return idleService.forget().downcast<nsIdleServiceAndroid>();
|
2012-06-29 08:32:21 +00:00
|
|
|
}
|
|
|
|
|
2010-06-03 20:56:36 +00:00
|
|
|
protected:
|
2012-06-29 08:32:21 +00:00
|
|
|
nsIdleServiceAndroid() { }
|
|
|
|
virtual ~nsIdleServiceAndroid() { }
|
2015-08-15 02:06:20 +00:00
|
|
|
bool UsePollMode() override;
|
2010-06-03 20:56:36 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsIdleServiceAndroid_h__
|