summaryrefslogtreecommitdiff
path: root/Source/JavaScriptCore/heap/HeapTimer.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/JavaScriptCore/heap/HeapTimer.h')
-rw-r--r--Source/JavaScriptCore/heap/HeapTimer.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/JavaScriptCore/heap/HeapTimer.h b/Source/JavaScriptCore/heap/HeapTimer.h
index 9255e0648..88715098a 100644
--- a/Source/JavaScriptCore/heap/HeapTimer.h
+++ b/Source/JavaScriptCore/heap/HeapTimer.h
@@ -31,6 +31,8 @@
#if USE(CF)
#include <CoreFoundation/CoreFoundation.h>
+#elif PLATFORM(BLACKBERRY)
+#include <BlackBerryPlatformTimer.h>
#endif
namespace JSC {
@@ -63,6 +65,10 @@ protected:
CFRunLoopTimerContext m_context;
Mutex m_shutdownMutex;
+#elif PLATFORM(BLACKBERRY)
+ void timerDidFire();
+
+ BlackBerry::Platform::Timer<HeapTimer> m_timer;
#endif
private: