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

Unified Diff: Source/core/dom/Microtask.cpp

Issue 460393003: Cleanup namespace usage in Source/core/{dom/* & fileapi/*} (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Fix Error and Rebase Created 6 years, 4 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/core/dom/Microtask.h ('k') | Source/core/dom/QualifiedName.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/Microtask.cpp
diff --git a/Source/core/dom/Microtask.cpp b/Source/core/dom/Microtask.cpp
index 70dfcf8c9cefecef86056ecdd1d2c87d991103e0..d2ffaed202eda2bbf59fc1a323e1a94e218ea008 100644
--- a/Source/core/dom/Microtask.cpp
+++ b/Source/core/dom/Microtask.cpp
@@ -52,11 +52,11 @@ void Microtask::performCheckpoint()
static void microtaskFunctionCallback(void* data)
{
- OwnPtr<blink::WebThread::Task> task = adoptPtr(static_cast<blink::WebThread::Task*>(data));
+ OwnPtr<WebThread::Task> task = adoptPtr(static_cast<WebThread::Task*>(data));
task->run();
}
-void Microtask::enqueueMicrotask(PassOwnPtr<blink::WebThread::Task> callback)
+void Microtask::enqueueMicrotask(PassOwnPtr<WebThread::Task> callback)
{
v8::Isolate* isolate = v8::Isolate::GetCurrent();
isolate->EnqueueMicrotask(&microtaskFunctionCallback, callback.leakPtr());
« no previous file with comments | « Source/core/dom/Microtask.h ('k') | Source/core/dom/QualifiedName.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698