blob: c67d310172289f31e5aaeec75d302e2031c7f7c2 [file]
// Copyright 2017 The PDFium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com
#ifndef FXJS_CJS_TIMEROBJ_H_
#define FXJS_CJS_TIMEROBJ_H_
#include "fxjs/cjs_object.h"
#include "fxjs/js_define.h"
class GlobalTimer;
class CJS_TimerObj final : public CJS_Object {
public:
static constexpr uint32_t kObjDefnId = kJSTimerObjDefnID;
static void DefineJSObjects(CFXJS_Engine* pEngine);
CJS_TimerObj(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime);
~CJS_TimerObj() override;
void SetTimer(GlobalTimer* pTimer);
int GetTimerID() const { return timer_id_; }
private:
int timer_id_ = 0; // Weak reference to GlobalTimer through global map.
};
#endif // FXJS_CJS_TIMEROBJ_H_