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