Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1974)

Unified Diff: Source/web/WebWorkerRunLoop.cpp

Issue 423303004: Change WokerThread to use a blink::WebThread (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove changes made to WebThread. Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/web/WebEmbeddedWorkerImpl.cpp ('k') | public/platform/Platform.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebWorkerRunLoop.cpp
diff --git a/Source/web/WebWorkerRunLoop.cpp b/Source/web/WebWorkerRunLoop.cpp
index aa61bd8fa40589780823f8d14b05e82a71dfdbac..8b5a1be74952cf1c25d038bb6dddb0e89e53f3a4 100644
--- a/Source/web/WebWorkerRunLoop.cpp
+++ b/Source/web/WebWorkerRunLoop.cpp
@@ -25,7 +25,7 @@
#include "config.h"
#include "public/platform/WebWorkerRunLoop.h"
-#include "core/workers/WorkerRunLoop.h"
+#include "core/dom/ExecutionContextTask.h"
using namespace blink;
@@ -63,7 +63,8 @@ WebWorkerRunLoop::WebWorkerRunLoop(WorkerRunLoop* workerRunLoop)
bool WebWorkerRunLoop::postTask(Task* task)
{
- return m_workerRunLoop->postTask(TaskForwarder::create(adoptPtr(task)));
+ ASSERT(false);
+ return false;
}
bool WebWorkerRunLoop::equals(const WebWorkerRunLoop& o) const
« no previous file with comments | « Source/web/WebEmbeddedWorkerImpl.cpp ('k') | public/platform/Platform.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698