Upstream version 9.38.198.0
[platform/framework/web/crosswalk.git] / src / third_party / WebKit / public / platform / WebWorkerRunLoop.h
index d790a23..748d111 100644 (file)
 
 #include "WebCommon.h"
 
-namespace WebCore {
-class WorkerRunLoop;
-}
-
 namespace blink {
 
+class WorkerThread;
+
 class WebWorkerRunLoop {
 public:
     class Task {
@@ -47,11 +45,11 @@ public:
     BLINK_EXPORT bool lessThan(const WebWorkerRunLoop&) const;
 
 #if BLINK_IMPLEMENTATION
-    WebWorkerRunLoop(WebCore::WorkerRunLoop*);
+    WebWorkerRunLoop(WorkerThread*);
 #endif
 
 private:
-    WebCore::WorkerRunLoop* m_workerRunLoop;
+    WorkerThread* m_workerThread;
 };
 
 inline bool operator==(const WebWorkerRunLoop& a, const WebWorkerRunLoop& b)