Title: [195094] trunk/Source/WTF
Revision
195094
Author
commit-qu...@webkit.org
Date
2016-01-15 00:22:38 -0800 (Fri, 15 Jan 2016)

Log Message

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

Patch by Konstantin Tokarev <annu...@yandex.ru> on 2016-01-15
Reviewed by Gyuyoung Kim.

* wtf/efl/WorkQueueEfl.cpp:

Modified Paths

Diff

Modified: trunk/Source/WTF/ChangeLog (195093 => 195094)


--- trunk/Source/WTF/ChangeLog	2016-01-15 08:11:47 UTC (rev 195093)
+++ trunk/Source/WTF/ChangeLog	2016-01-15 08:22:38 UTC (rev 195094)
@@ -1,3 +1,12 @@
+2016-01-15  Konstantin Tokarev  <annu...@yandex.ru>
+
+        [EFL] WorkQueue methods should be defined inside WTF namespace.
+        https://bugs.webkit.org/show_bug.cgi?id=153097
+
+        Reviewed by Gyuyoung Kim.
+
+        * wtf/efl/WorkQueueEfl.cpp:
+
 2016-01-14  Chris Dumez  <cdu...@apple.com>
 
         Unreviewed, rolling out r195035.

Modified: trunk/Source/WTF/wtf/efl/WorkQueueEfl.cpp (195093 => 195094)


--- trunk/Source/WTF/wtf/efl/WorkQueueEfl.cpp	2016-01-15 08:11:47 UTC (rev 195093)
+++ trunk/Source/WTF/wtf/efl/WorkQueueEfl.cpp	2016-01-15 08:22:38 UTC (rev 195094)
@@ -23,6 +23,8 @@
 #include <DispatchQueueEfl.h>
 #include <DispatchQueueWorkItemEfl.h>
 
+namespace WTF {
+
 void WorkQueue::platformInitialize(const char* name, Type, QOS)
 {
     m_dispatchQueue = DispatchQueue::create(name);
@@ -67,3 +69,5 @@
 
     m_dispatchQueue->dispatch(TimerWorkItem::create(this, WTFMove(function), duration));
 }
+
+}
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to