1*3ac0a46fSAndroid Build Coastguard Worker // Copyright 2017 The PDFium Authors 2*3ac0a46fSAndroid Build Coastguard Worker // Use of this source code is governed by a BSD-style license that can be 3*3ac0a46fSAndroid Build Coastguard Worker // found in the LICENSE file. 4*3ac0a46fSAndroid Build Coastguard Worker 5*3ac0a46fSAndroid Build Coastguard Worker // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com 6*3ac0a46fSAndroid Build Coastguard Worker 7*3ac0a46fSAndroid Build Coastguard Worker #ifndef FXJS_CJS_TIMEROBJ_H_ 8*3ac0a46fSAndroid Build Coastguard Worker #define FXJS_CJS_TIMEROBJ_H_ 9*3ac0a46fSAndroid Build Coastguard Worker 10*3ac0a46fSAndroid Build Coastguard Worker #include "fxjs/cjs_object.h" 11*3ac0a46fSAndroid Build Coastguard Worker 12*3ac0a46fSAndroid Build Coastguard Worker class GlobalTimer; 13*3ac0a46fSAndroid Build Coastguard Worker 14*3ac0a46fSAndroid Build Coastguard Worker class CJS_TimerObj final : public CJS_Object { 15*3ac0a46fSAndroid Build Coastguard Worker public: 16*3ac0a46fSAndroid Build Coastguard Worker static uint32_t GetObjDefnID(); 17*3ac0a46fSAndroid Build Coastguard Worker static void DefineJSObjects(CFXJS_Engine* pEngine); 18*3ac0a46fSAndroid Build Coastguard Worker 19*3ac0a46fSAndroid Build Coastguard Worker CJS_TimerObj(v8::Local<v8::Object> pObject, CJS_Runtime* pRuntime); 20*3ac0a46fSAndroid Build Coastguard Worker ~CJS_TimerObj() override; 21*3ac0a46fSAndroid Build Coastguard Worker 22*3ac0a46fSAndroid Build Coastguard Worker void SetTimer(GlobalTimer* pTimer); GetTimerID()23*3ac0a46fSAndroid Build Coastguard Worker int GetTimerID() const { return m_nTimerID; } 24*3ac0a46fSAndroid Build Coastguard Worker 25*3ac0a46fSAndroid Build Coastguard Worker private: 26*3ac0a46fSAndroid Build Coastguard Worker static uint32_t ObjDefnID; 27*3ac0a46fSAndroid Build Coastguard Worker 28*3ac0a46fSAndroid Build Coastguard Worker int m_nTimerID = 0; // Weak reference to GlobalTimer through global map. 29*3ac0a46fSAndroid Build Coastguard Worker }; 30*3ac0a46fSAndroid Build Coastguard Worker 31*3ac0a46fSAndroid Build Coastguard Worker #endif // FXJS_CJS_TIMEROBJ_H_ 32