Index: src/inspector/v8-profiler-agent-impl.h |
diff --git a/src/inspector/v8-profiler-agent-impl.h b/src/inspector/v8-profiler-agent-impl.h |
index c60ff862d12351c31de794d6acac361b6322f68f..2f44dfceac195aa29d04a5343df465ca921b6582 100644 |
--- a/src/inspector/v8-profiler-agent-impl.h |
+++ b/src/inspector/v8-profiler-agent-impl.h |
@@ -20,6 +20,7 @@ namespace v8_inspector { |
class V8InspectorSessionImpl; |
+using protocol::Maybe; |
using protocol::Response; |
class V8ProfilerAgentImpl : public protocol::Profiler::Backend { |
@@ -37,7 +38,7 @@ class V8ProfilerAgentImpl : public protocol::Profiler::Backend { |
Response start() override; |
Response stop(std::unique_ptr<protocol::Profiler::Profile>*) override; |
- Response startPreciseCoverage() override; |
+ Response startPreciseCoverage(Maybe<bool> binary) override; |
Response stopPreciseCoverage() override; |
Response takePreciseCoverage( |
std::unique_ptr<protocol::Array<protocol::Profiler::ScriptCoverage>>* |