Changeset 195094 in webkit


Ignore:
Timestamp:
Jan 15, 2016 12:22:38 AM (8 years ago)
Author:
commit-queue@webkit.org
Message:

[EFL] WorkQueue methods should be defined inside WTF namespace.
https://bugs.webkit.org/show_bug.cgi?id=153097

Patch by Konstantin Tokarev <Konstantin Tokarev> on 2016-01-15
Reviewed by Gyuyoung Kim.

  • wtf/efl/WorkQueueEfl.cpp:
Location:
trunk/Source/WTF
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WTF/ChangeLog

    r195079 r195094  
     12016-01-15  Konstantin Tokarev  <annulen@yandex.ru>
     2
     3        [EFL] WorkQueue methods should be defined inside WTF namespace.
     4        https://bugs.webkit.org/show_bug.cgi?id=153097
     5
     6        Reviewed by Gyuyoung Kim.
     7
     8        * wtf/efl/WorkQueueEfl.cpp:
     9
    1102016-01-14  Chris Dumez  <cdumez@apple.com>
    211
  • trunk/Source/WTF/wtf/efl/WorkQueueEfl.cpp

    r194496 r195094  
    2323#include <DispatchQueueEfl.h>
    2424#include <DispatchQueueWorkItemEfl.h>
     25
     26namespace WTF {
    2527
    2628void WorkQueue::platformInitialize(const char* name, Type, QOS)
     
    6870    m_dispatchQueue->dispatch(TimerWorkItem::create(this, WTFMove(function), duration));
    6971}
     72
     73}
Note: See TracChangeset for help on using the changeset viewer.