OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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/debug/trace_event_memory.h" | 5 #include "base/trace_event/trace_event_memory.h" |
6 | 6 |
7 #include "base/debug/leak_annotations.h" | 7 #include "base/debug/leak_annotations.h" |
8 #include "base/debug/trace_event.h" | |
9 #include "base/lazy_instance.h" | 8 #include "base/lazy_instance.h" |
10 #include "base/logging.h" | 9 #include "base/logging.h" |
11 #include "base/memory/scoped_ptr.h" | 10 #include "base/memory/scoped_ptr.h" |
12 #include "base/message_loop/message_loop.h" | 11 #include "base/message_loop/message_loop.h" |
13 #include "base/strings/string_number_conversions.h" | 12 #include "base/strings/string_number_conversions.h" |
14 #include "base/strings/string_util.h" | 13 #include "base/strings/string_util.h" |
15 #include "base/threading/thread_local_storage.h" | 14 #include "base/threading/thread_local_storage.h" |
| 15 #include "base/trace_event/trace_event.h" |
16 | 16 |
17 namespace base { | 17 namespace base { |
18 namespace debug { | 18 namespace debug { |
19 | 19 |
20 namespace { | 20 namespace { |
21 | 21 |
22 // Maximum number of nested TRACE_EVENT scopes to record. Must be less than | 22 // Maximum number of nested TRACE_EVENT scopes to record. Must be less than |
23 // or equal to HeapProfileTable::kMaxStackDepth / 2 because we record two | 23 // or equal to HeapProfileTable::kMaxStackDepth / 2 because we record two |
24 // entries on the pseudo-stack per scope. | 24 // entries on the pseudo-stack per scope. |
25 const size_t kMaxScopeDepth = 16; | 25 const size_t kMaxScopeDepth = 16; |
(...skipping 405 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
431 if (!base::HexStringToUInt64(hex_address, &address)) | 431 if (!base::HexStringToUInt64(hex_address, &address)) |
432 return "error"; | 432 return "error"; |
433 if (!address) | 433 if (!address) |
434 return "null"; | 434 return "null"; |
435 // Note that this cast handles 64-bit to 32-bit conversion if necessary. | 435 // Note that this cast handles 64-bit to 32-bit conversion if necessary. |
436 return reinterpret_cast<const char*>(address); | 436 return reinterpret_cast<const char*>(address); |
437 } | 437 } |
438 | 438 |
439 } // namespace debug | 439 } // namespace debug |
440 } // namespace base | 440 } // namespace base |
OLD | NEW |