Index: third_party/WebKit/Source/core/probe/CoreProbes.h |
diff --git a/third_party/WebKit/Source/core/probe/CoreProbes.h b/third_party/WebKit/Source/core/probe/CoreProbes.h |
index 68be56318f0cd034b5b5eb450ee8dfb794bf4416..ea60afb563f86e35ce927f8a1cc3f87d08020c59 100644 |
--- a/third_party/WebKit/Source/core/probe/CoreProbes.h |
+++ b/third_party/WebKit/Source/core/probe/CoreProbes.h |
@@ -55,13 +55,15 @@ class CORE_EXPORT AsyncTask { |
AsyncTask(ExecutionContext*, |
void* task, |
const char* step = nullptr, |
- bool enabled = true); |
+ bool enabled = true, |
+ bool optional = false); |
~AsyncTask(); |
private: |
ThreadDebugger* debugger_; |
void* task_; |
bool recurring_; |
+ bool started_; |
}; |
// Called from generated instrumentation code. |