2007-01-25 21:13:32 +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/. */
|
2007-01-25 21:13:32 +00:00
|
|
|
|
|
|
|
#ifndef nsIdleServiceWin_h__
|
|
|
|
#define nsIdleServiceWin_h__
|
|
|
|
|
|
|
|
#include "nsIdleService.h"
|
|
|
|
|
2009-04-14 18:23:01 +00:00
|
|
|
|
|
|
|
/* NOTE: Compare of GetTickCount() could overflow. This corrects for
|
|
|
|
* overflow situations.
|
|
|
|
***/
|
|
|
|
#ifndef SAFE_COMPARE_EVEN_WITH_WRAPPING
|
|
|
|
#define SAFE_COMPARE_EVEN_WITH_WRAPPING(A, B) (((int)((long)A - (long)B) & 0xFFFFFFFF))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-01-25 21:13:32 +00:00
|
|
|
class nsIdleServiceWin : public nsIdleService
|
|
|
|
{
|
|
|
|
public:
|
2012-06-29 08:32:21 +00:00
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
2009-04-02 21:01: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<nsIdleServiceWin> GetInstance()
|
|
|
|
{
|
|
|
|
nsIdleServiceWin* idleService =
|
|
|
|
static_cast<nsIdleServiceWin*>(nsIdleService::GetInstance().get());
|
|
|
|
if (!idleService) {
|
|
|
|
idleService = new nsIdleServiceWin();
|
|
|
|
NS_ADDREF(idleService);
|
|
|
|
}
|
|
|
|
|
|
|
|
return idleService;
|
|
|
|
}
|
|
|
|
|
2010-04-16 17:37:16 +00:00
|
|
|
protected:
|
2012-06-29 08:32:21 +00:00
|
|
|
nsIdleServiceWin() { }
|
|
|
|
virtual ~nsIdleServiceWin() { }
|
2010-04-16 17:37:16 +00:00
|
|
|
bool UsePollMode();
|
2007-01-25 21:13:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // nsIdleServiceWin_h__
|