diff options
Diffstat (limited to 'Source/JavaScriptCore/runtime/Watchdog.h')
-rw-r--r-- | Source/JavaScriptCore/runtime/Watchdog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/JavaScriptCore/runtime/Watchdog.h b/Source/JavaScriptCore/runtime/Watchdog.h index 08c0ccb95..a7b29ef7a 100644 --- a/Source/JavaScriptCore/runtime/Watchdog.h +++ b/Source/JavaScriptCore/runtime/Watchdog.h @@ -54,8 +54,8 @@ public: // This version of didFire() is a more efficient version for when we want // to know if the watchdog has fired in the past, and not whether it should // fire right now. - JS_EXPORT_PRIVATE bool didFire() { return m_didFire; } - JS_EXPORT_PRIVATE void fire(); + bool didFire() { return m_didFire; } + void fire(); void* timerDidFireAddress() { return &m_timerDidFire; } |