Index: content/child/child_thread_impl.cc |
diff --git a/content/child/child_thread_impl.cc b/content/child/child_thread_impl.cc |
index cccefe597917512c7a51c35b821ba4add9ed0911..34b67640a747b66ef962dcb7d354ae154ad3f34d 100644 |
--- a/content/child/child_thread_impl.cc |
+++ b/content/child/child_thread_impl.cc |
@@ -639,11 +639,11 @@ void ChildThreadImpl::OnSetProfilerStatus(ThreadData::Status status) { |
} |
void ChildThreadImpl::OnGetChildProfilerData(int sequence_number) { |
- tracked_objects::ProcessDataSnapshot process_data; |
- ThreadData::Snapshot(&process_data); |
+ tracked_objects::ProcessDataSnapshot process_data_snapshot; |
+ ThreadData::GetProcessDataSnapshot(&process_data_snapshot); |
Send(new ChildProcessHostMsg_ChildProfilerData(sequence_number, |
- process_data)); |
+ process_data_snapshot)); |
Ilya Sherman
2015/03/10 00:48:11
Optional nit: IMO none of the renames here help wi
vadimt
2015/03/13 23:18:02
Agreed. Must be a result of massive renames throug
|
} |
void ChildThreadImpl::OnDumpHandles() { |