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

Unified Diff: third_party/WebKit/Source/modules/filesystem/DOMFileSystem.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/modules/filesystem/DOMFileSystem.cpp
diff --git a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
index d93aed62cbf205a804729d73b4cf4b6253fde013..74fdeedfed31c083989d0acb303be5d8f76c1c1d 100644
--- a/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
+++ b/third_party/WebKit/Source/modules/filesystem/DOMFileSystem.cpp
@@ -60,8 +60,7 @@ void runCallback(ExecutionContext* executionContext,
if (!executionContext)
return;
DCHECK(executionContext->isContextThread());
- probe::AsyncTask asyncTask(executionContext, task.get(),
- true /* isInstrumented */);
+ probe::AsyncTask asyncTask(executionContext, task.get());
(*task)();
}

Powered by Google App Engine
This is Rietveld 408576698