| Index: content/browser/devtools/protocol/tracing_handler.cc
|
| diff --git a/content/browser/devtools/protocol/tracing_handler.cc b/content/browser/devtools/protocol/tracing_handler.cc
|
| index ed18d3ccdbea801321f0da4ab1f189d1988f104e..5c638d99ff326e2c68f7a5555b48bc6fda519788 100644
|
| --- a/content/browser/devtools/protocol/tracing_handler.cc
|
| +++ b/content/browser/devtools/protocol/tracing_handler.cc
|
| @@ -211,10 +211,9 @@ Response TracingHandler::RequestMemoryDump(DevToolsCommandId command_id) {
|
| if (!IsRecording())
|
| return Response::InternalError("Tracing is not started");
|
|
|
| - base::trace_event::MemoryDumpArgs dump_args = {
|
| - base::trace_event::MemoryDumpArgs::LevelOfDetail::HIGH};
|
| base::trace_event::MemoryDumpManager::GetInstance()->RequestGlobalDump(
|
| - base::trace_event::MemoryDumpType::EXPLICITLY_TRIGGERED, dump_args,
|
| + base::trace_event::MemoryDumpType::EXPLICITLY_TRIGGERED,
|
| + base::trace_event::MemoryDumpLevelOfDetail::DETAILED,
|
| base::Bind(&TracingHandler::OnMemoryDumpFinished,
|
| weak_factory_.GetWeakPtr(), command_id));
|
| return Response::OK();
|
|
|