mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-03 19:05:35 +00:00
63 lines
1.5 KiB
C
63 lines
1.5 KiB
C
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
||
|
/* 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/. */
|
||
|
|
||
|
#ifndef GMPTimerParent_h_
|
||
|
#define GMPTimerParent_h_
|
||
|
|
||
|
#include "mozilla/gmp/PGMPTimerParent.h"
|
||
|
#include "nsITimer.h"
|
||
|
#include "nsCOMPtr.h"
|
||
|
#include "nsClassHashtable.h"
|
||
|
#include "nsHashKeys.h"
|
||
|
#include "nsAutoPtr.h"
|
||
|
#include "mozilla/Monitor.h"
|
||
|
#include "nsIThread.h"
|
||
|
|
||
|
namespace mozilla {
|
||
|
namespace gmp {
|
||
|
|
||
|
class GMPTimerParent : public PGMPTimerParent {
|
||
|
public:
|
||
|
NS_INLINE_DECL_REFCOUNTING(GMPTimerParent)
|
||
|
explicit GMPTimerParent(nsIThread* aGMPThread);
|
||
|
|
||
|
void Shutdown();
|
||
|
|
||
|
protected:
|
||
|
virtual bool RecvSetTimer(const uint32_t& aTimerId,
|
||
|
const uint32_t& aTimeoutMs) override;
|
||
|
virtual void ActorDestroy(ActorDestroyReason aWhy) override;
|
||
|
|
||
|
private:
|
||
|
~GMPTimerParent() {}
|
||
|
|
||
|
static void GMPTimerExpired(nsITimer *aTimer, void *aClosure);
|
||
|
|
||
|
struct Context {
|
||
|
Context() {
|
||
|
MOZ_COUNT_CTOR(Context);
|
||
|
}
|
||
|
~Context() {
|
||
|
MOZ_COUNT_DTOR(Context);
|
||
|
}
|
||
|
nsCOMPtr<nsITimer> mTimer;
|
||
|
RefPtr<GMPTimerParent> mParent; // Note: live timers keep the GMPTimerParent alive.
|
||
|
uint32_t mId;
|
||
|
};
|
||
|
|
||
|
void TimerExpired(Context* aContext);
|
||
|
|
||
|
nsTHashtable<nsPtrHashKey<Context>> mTimers;
|
||
|
|
||
|
nsCOMPtr<nsIThread> mGMPThread;
|
||
|
|
||
|
bool mIsOpen;
|
||
|
};
|
||
|
|
||
|
} // namespace gmp
|
||
|
} // namespace mozilla
|
||
|
|
||
|
#endif // GMPTimerParent_h_
|