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

Unified Diff: third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h

Issue 1682423002: Remove WebWaitableEvent and replace it with WaitableEvent. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix android build Created 4 years, 10 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
Index: third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
diff --git a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
index ea997607b17325bb5ab1e8d60104c2665fddc109..b691e244628f97b8c5587469a7dd2d63cd672637 100644
--- a/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
+++ b/third_party/WebKit/Source/core/loader/WorkerThreadableLoader.h
@@ -52,7 +52,7 @@ class ExecutionContextTask;
class ResourceError;
class ResourceRequest;
class ResourceResponse;
-class WebWaitableEvent;
+class WaitableEvent;
class WorkerGlobalScope;
class WorkerLoaderProxy;
struct CrossThreadResourceRequestData;
@@ -182,7 +182,7 @@ private:
void forwardTaskToWorkerOnLoaderDone(PassOwnPtr<ExecutionContextTask>) override;
bool m_done;
- OwnPtr<WebWaitableEvent> m_loaderDoneEvent;
+ OwnPtr<WaitableEvent> m_loaderDoneEvent;
// Thread-safety: |m_clientTasks| can be written (i.e. Closures are added)
// on the main thread only before |m_loaderDoneEvent| is signaled and can be read
// on the worker context thread only after |m_loaderDoneEvent| is signaled.

Powered by Google App Engine
This is Rietveld 408576698