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