Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(367)

Side by Side Diff: base/trace_event/process_memory_dump.cc

Issue 1417743004: include what you use: errno.h in process_memory_dump.cc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 1 // Copyright 2015 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/trace_event/process_memory_dump.h" 5 #include "base/trace_event/process_memory_dump.h"
6 6
7 #include <cerrno>
Primiano Tucci (use gerrit) 2015/11/05 09:54:07 can you make it errno.h ? I think I've never seen
Mostyn Bramley-Moore 2015/11/05 09:59:50 Done.
7 #include <vector> 8 #include <vector>
8 9
9 #include "base/process/process_metrics.h" 10 #include "base/process/process_metrics.h"
10 #include "base/stl_util.h" 11 #include "base/stl_util.h"
11 #include "base/trace_event/process_memory_totals.h" 12 #include "base/trace_event/process_memory_totals.h"
12 #include "base/trace_event/trace_event_argument.h" 13 #include "base/trace_event/trace_event_argument.h"
13 14
14 #if defined(OS_POSIX) 15 #if defined(OS_POSIX)
15 #include <sys/mman.h> 16 #include <sys/mman.h>
16 #endif 17 #endif
(...skipping 229 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 247
247 void ProcessMemoryDump::AddSuballocation(const MemoryAllocatorDumpGuid& source, 248 void ProcessMemoryDump::AddSuballocation(const MemoryAllocatorDumpGuid& source,
248 const std::string& target_node_name) { 249 const std::string& target_node_name) {
249 std::string child_mad_name = target_node_name + "/__" + source.ToString(); 250 std::string child_mad_name = target_node_name + "/__" + source.ToString();
250 MemoryAllocatorDump* target_child_mad = CreateAllocatorDump(child_mad_name); 251 MemoryAllocatorDump* target_child_mad = CreateAllocatorDump(child_mad_name);
251 AddOwnershipEdge(source, target_child_mad->guid()); 252 AddOwnershipEdge(source, target_child_mad->guid());
252 } 253 }
253 254
254 } // namespace trace_event 255 } // namespace trace_event
255 } // namespace base 256 } // namespace base
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698