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/. */
|
2007-04-01 05:51:18 +04:00
|
|
|
|
|
|
|
#ifndef nsIdleServiceX_h_
|
|
|
|
#define nsIdleServiceX_h_
|
|
|
|
|
|
|
|
#include "nsIdleService.h"
|
|
|
|
|
|
|
|
class nsIdleServiceX : public nsIdleService
|
|
|
|
{
|
|
|
|
public:
|
2012-06-29 12:32:21 +04:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2012-02-22 05:44:40 +04:00
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
bool PollIdleTime(uint32_t* aIdleTime) override;
|
2010-04-16 21:37:16 +04:00
|
|
|
|
2012-06-29 12:32:21 +04:00
|
|
|
static already_AddRefed<nsIdleServiceX> GetInstance()
|
|
|
|
{
|
2015-10-18 08:24:48 +03:00
|
|
|
RefPtr<nsIdleService> idleService = nsIdleService::GetInstance();
|
2012-06-29 12:32:21 +04:00
|
|
|
if (!idleService) {
|
|
|
|
idleService = new nsIdleServiceX();
|
|
|
|
}
|
|
|
|
|
2013-04-28 15:52:10 +04:00
|
|
|
return idleService.forget().downcast<nsIdleServiceX>();
|
2012-06-29 12:32:21 +04:00
|
|
|
}
|
|
|
|
|
2010-04-16 21:37:16 +04:00
|
|
|
protected:
|
2012-06-29 12:32:21 +04:00
|
|
|
nsIdleServiceX() { }
|
|
|
|
virtual ~nsIdleServiceX() { }
|
2015-03-21 19:28:04 +03:00
|
|
|
bool UsePollMode() override;
|
2007-04-01 05:51:18 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsIdleServiceX_h_
|