Changeset 164962 in webkit


Ignore:
Timestamp:
Mar 2, 2014 6:00:46 PM (10 years ago)
Author:
ljaehun.lim@samsung.com
Message:

[EFL] Remove m_initEfl from RunLoop.
https://bugs.webkit.org/show_bug.cgi?id=129568

Reviewed by Gyuyoung Kim.

We don't use m_initEfl except RunLoop constructor.

  • wtf/RunLoop.h:
  • wtf/efl/RunLoopEfl.cpp:

(WTF::RunLoop::RunLoop):

Location:
trunk/Source/WTF
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r164942 r164962  
     12014-03-02  Jaehun Lim  <ljaehun.lim@samsung.com>
     2
     3        [EFL] Remove m_initEfl from RunLoop.
     4        https://bugs.webkit.org/show_bug.cgi?id=129568
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        We don't use m_initEfl except RunLoop constructor.
     9
     10        * wtf/RunLoop.h:
     11        * wtf/efl/RunLoopEfl.cpp:
     12        (WTF::RunLoop::RunLoop):
     13
    1142014-03-02  Darin Adler  <darin@apple.com>
    215
  • trunk/Source/WTF/wtf/RunLoop.h

    r163288 r164962  
    150150    int m_nestingLevel;
    151151#elif PLATFORM(EFL)
    152     bool m_initEfl;
    153 
    154152    Mutex m_pipeLock;
    155153    OwnPtr<Ecore_Pipe> m_pipe;
  • trunk/Source/WTF/wtf/efl/RunLoopEfl.cpp

    r159001 r164962  
    3838
    3939RunLoop::RunLoop()
    40     : m_initEfl(false)
    41     , m_wakeUpEventRequested(false)
     40    : m_wakeUpEventRequested(false)
    4241{
    4342    m_pipe = adoptPtr(ecore_pipe_add(wakeUpEvent, this));
    44     m_initEfl = true;
    4543}
    4644
Note: See TracChangeset for help on using the changeset viewer.