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

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

Issue 2746333002: DevTools: move recurring flag into AsyncTask, control cancelation from embedder only. (Closed)
Patch Set: using _END now Created 3 years, 9 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/workers/WorkerOrWorkletGlobalScope.cpp
diff --git a/third_party/WebKit/Source/core/workers/WorkerOrWorkletGlobalScope.cpp b/third_party/WebKit/Source/core/workers/WorkerOrWorkletGlobalScope.cpp
index 4bf634ad0884cb4e272f00a9c027363d0747b2f5..bbe53785f208f5ce350d1d47a042411aa9827ef7 100644
--- a/third_party/WebKit/Source/core/workers/WorkerOrWorkletGlobalScope.cpp
+++ b/third_party/WebKit/Source/core/workers/WorkerOrWorkletGlobalScope.cpp
@@ -59,7 +59,7 @@ void WorkerOrWorkletGlobalScope::runTask(
std::unique_ptr<ExecutionContextTask> task,
bool isInstrumented) {
DCHECK(thread()->isCurrentThread());
- probe::AsyncTask asyncTask(this, task.get(), isInstrumented);
+ probe::AsyncTask asyncTask(this, task.get(), nullptr, isInstrumented);
task->performTask(this);
}

Powered by Google App Engine
This is Rietveld 408576698