Ignore:
Timestamp:
Jan 10, 2014, 10:38:41 AM (11 years ago)
Author:
[email protected]
Message:

Removed Blackberry #ifdefs and platform code from JavaScriptCore
https://bugs.webkit.org/show_bug.cgi?id=126757

Reviewed by Sam Weinig.

  • PlatformBlackBerry.cmake: Removed.
  • heap/HeapTimer.cpp:
  • heap/HeapTimer.h:
  • heap/IncrementalSweeper.cpp:
  • heap/IncrementalSweeper.h:
  • jsc.cpp:

(main):

  • runtime/GCActivityCallbackBlackBerry.cpp: Removed.
  • runtime/MemoryStatistics.cpp:

(JSC::globalMemoryStatistics):

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/JavaScriptCore/heap/HeapTimer.cpp

    r157537 r161650  
    101101}
    102102
    103 #elif PLATFORM(BLACKBERRY)
    104 
    105 HeapTimer::HeapTimer(VM* vm)
    106     : m_vm(vm)
    107     , m_timer(this, &HeapTimer::timerDidFire)
    108 {
    109     // FIXME: Implement HeapTimer for other threads.
    110     if (WTF::isMainThread() && !m_timer.tryCreateClient())
    111         CRASH();
    112 }
    113 
    114 HeapTimer::~HeapTimer()
    115 {
    116 }
    117 
    118 void HeapTimer::timerDidFire()
    119 {
    120     doWork();
    121 }
    122 
    123 void HeapTimer::invalidate()
    124 {
    125 }
    126 
    127103#elif PLATFORM(EFL)
    128104
Note: See TracChangeset for help on using the changeset viewer.