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

Unified Diff: third_party/WebKit/Source/core/workers/ThreadedWorkletTest.cpp

Issue 2556993005: [blink] Split TaskType::Internal into InternalTimer and InternalLoading. (Closed)
Patch Set: One more fix Created 4 years 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/workers/ThreadedWorkletTest.cpp
diff --git a/third_party/WebKit/Source/core/workers/ThreadedWorkletTest.cpp b/third_party/WebKit/Source/core/workers/ThreadedWorkletTest.cpp
index 838e896b7ed8a362cecc3dc4889dc84eb4d58436..778121364ee1acfb167b1c38aa18f2478e2a8f91 100644
--- a/third_party/WebKit/Source/core/workers/ThreadedWorkletTest.cpp
+++ b/third_party/WebKit/Source/core/workers/ThreadedWorkletTest.cpp
@@ -64,7 +64,7 @@ class ThreadedWorkletThreadForTest : public WorkerThread {
globalScope()->countFeature(feature);
workerReportingProxy()
.getParentFrameTaskRunners()
- ->get(TaskType::Internal)
+ ->get(TaskType::UnspecedTimer)
->postTask(BLINK_FROM_HERE, crossThreadBind(&testing::exitRunLoop));
}
@@ -81,7 +81,7 @@ class ThreadedWorkletThreadForTest : public WorkerThread {
workerReportingProxy()
.getParentFrameTaskRunners()
- ->get(TaskType::Internal)
+ ->get(TaskType::UnspecedTimer)
->postTask(BLINK_FROM_HERE, crossThreadBind(&testing::exitRunLoop));
}
};

Powered by Google App Engine
This is Rietveld 408576698