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

Unified Diff: third_party/WebKit/Source/core/workers/DedicatedWorkerTest.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/DedicatedWorkerTest.cpp
diff --git a/third_party/WebKit/Source/core/workers/DedicatedWorkerTest.cpp b/third_party/WebKit/Source/core/workers/DedicatedWorkerTest.cpp
index dfb10860bd1cbc28ed64284c46d15a594db3554a..3c0fb978d86870bf611d3ff6935d5257daa400b4 100644
--- a/third_party/WebKit/Source/core/workers/DedicatedWorkerTest.cpp
+++ b/third_party/WebKit/Source/core/workers/DedicatedWorkerTest.cpp
@@ -59,7 +59,7 @@ class DedicatedWorkerThreadForTest final : public DedicatedWorkerThread {
globalScope()->countFeature(feature);
workerReportingProxy()
.getParentFrameTaskRunners()
- ->get(TaskType::Internal)
+ ->get(TaskType::UnspecedTimer)
->postTask(BLINK_FROM_HERE, crossThreadBind(&testing::exitRunLoop));
}
@@ -76,7 +76,7 @@ class DedicatedWorkerThreadForTest final : public DedicatedWorkerThread {
workerReportingProxy()
.getParentFrameTaskRunners()
- ->get(TaskType::Internal)
+ ->get(TaskType::UnspecedTimer)
->postTask(BLINK_FROM_HERE, crossThreadBind(&testing::exitRunLoop));
}
};

Powered by Google App Engine
This is Rietveld 408576698