| Index: third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| diff --git a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| index a9c0c98914697c39118142c531fbea0ae7e1ab79..715ef004fef83201f2048ae2841d792b3cd1c230 100644
|
| --- a/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| +++ b/third_party/WebKit/Source/core/inspector/InspectorTracingAgent.cpp
|
| @@ -48,6 +48,7 @@ void InspectorTracingAgent::start(
|
| const Maybe<double>& bufferUsageReportingInterval,
|
| const Maybe<String>& transferMode,
|
| const Maybe<protocol::Tracing::TraceConfig>& config,
|
| + const Maybe<String>& reloadingBannerMessage,
|
| std::unique_ptr<StartCallback> callback)
|
| {
|
| ASSERT(sessionId().isEmpty());
|
| @@ -57,7 +58,7 @@ void InspectorTracingAgent::start(
|
| }
|
|
|
| m_state->setString(TracingAgentState::sessionId, IdentifiersFactory::createIdentifier());
|
| - m_client->enableTracing(categories.fromMaybe(String()));
|
| + m_client->enableTracing(categories.fromMaybe(String()), reloadingBannerMessage.fromMaybe(String()));
|
| emitMetadataEvents();
|
| callback->sendSuccess();
|
| }
|
|
|