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:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
|
2012-02-22 01:44:40 +00:00
|
|
|
nsIdleServiceX() {}
|
|
|
|
virtual ~nsIdleServiceX() {}
|
|
|
|
|
2010-04-16 17:37:16 +00:00
|
|
|
bool PollIdleTime(PRUint32* aIdleTime);
|
|
|
|
|
|
|
|
protected:
|
|
|
|
bool UsePollMode();
|
2007-04-01 01:51:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsIdleServiceX_h_
|