| Index: content/browser/tracing/tracing_controller_impl.cc
|
| diff --git a/content/browser/tracing/tracing_controller_impl.cc b/content/browser/tracing/tracing_controller_impl.cc
|
| index 6717ee99d284466079d5071775e382d718cc8c26..9148463db0d90815ec8f55f8aebdbad3a782f187 100644
|
| --- a/content/browser/tracing/tracing_controller_impl.cc
|
| +++ b/content/browser/tracing/tracing_controller_impl.cc
|
| @@ -349,7 +349,8 @@ void TracingControllerImpl::OnDisableRecordingDone() {
|
| // Flush asynchronously now, because we don't have any children to wait for.
|
| TraceLog::GetInstance()->Flush(
|
| base::Bind(&TracingControllerImpl::OnLocalTraceDataCollected,
|
| - base::Unretained(this)));
|
| + base::Unretained(this)),
|
| + true);
|
| }
|
|
|
| // Notify all child processes.
|
| @@ -681,7 +682,8 @@ void TracingControllerImpl::OnDisableRecordingAcked(
|
| // called with the last of the local trace data.
|
| TraceLog::GetInstance()->Flush(
|
| base::Bind(&TracingControllerImpl::OnLocalTraceDataCollected,
|
| - base::Unretained(this)));
|
| + base::Unretained(this)),
|
| + true);
|
| return;
|
| }
|
|
|
|
|