Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(401)

Unified Diff: fpdfsdk/javascript/JS_Object.cpp

Issue 1923093002: Remove IFX_SystemHandler. (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@master
Patch Set: Created 4 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: fpdfsdk/javascript/JS_Object.cpp
diff --git a/fpdfsdk/javascript/JS_Object.cpp b/fpdfsdk/javascript/JS_Object.cpp
index d85cc1dbe496c798b857a8d82a0ada89c40e60e1..7dc91a7291fa6c824b1ce8bd4df08103fd37e9f9 100644
--- a/fpdfsdk/javascript/JS_Object.cpp
+++ b/fpdfsdk/javascript/JS_Object.cpp
@@ -107,7 +107,7 @@ CJS_Timer::CJS_Timer(CJS_EmbedObj* pObj,
m_swJScript(script),
m_pRuntime(pRuntime),
m_pApp(pApp) {
- IFX_SystemHandler* pHandler = m_pApp->GetSysHandler();
+ CFX_SystemHandler* pHandler = m_pApp->GetSysHandler();
m_nTimerID = pHandler->SetTimer(dwElapse, TimerProc);
(*GetGlobalTimerMap())[m_nTimerID] = this;
m_pRuntime->AddObserver(this);
@@ -123,7 +123,7 @@ CJS_Timer::~CJS_Timer() {
void CJS_Timer::KillJSTimer() {
if (m_nTimerID) {
if (m_bValid) {
- IFX_SystemHandler* pHandler = m_pApp->GetSysHandler();
+ CFX_SystemHandler* pHandler = m_pApp->GetSysHandler();
pHandler->KillTimer(m_nTimerID);
}
GetGlobalTimerMap()->erase(m_nTimerID);

Powered by Google App Engine
This is Rietveld 408576698