| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| ===================================================================
|
| --- content/browser/renderer_host/render_process_host_impl.cc (revision 120788)
|
| +++ content/browser/renderer_host/render_process_host_impl.cc (working copy)
|
| @@ -909,8 +909,9 @@
|
| IPC::Logging::GetInstance()->Enabled()));
|
| #endif
|
|
|
| - bool enable = tracked_objects::ThreadData::tracking_status();
|
| - Send(new ChildProcessMsg_SetProfilerStatus(enable));
|
| + tracked_objects::ThreadData::Status status =
|
| + tracked_objects::ThreadData::status();
|
| + Send(new ChildProcessMsg_SetProfilerStatus(status));
|
| }
|
|
|
| void RenderProcessHostImpl::OnChannelError() {
|
|
|