OLD | NEW |
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 "platform/web_memory_allocator_dump_impl.h" | 5 #include "content/child/web_memory_allocator_dump_impl.h" |
6 | 6 |
7 #include "base/trace_event/memory_allocator_dump.h" | 7 #include "base/trace_event/memory_allocator_dump.h" |
8 | 8 |
9 namespace blink { | 9 namespace content { |
10 | 10 |
11 WebMemoryAllocatorDumpImpl::WebMemoryAllocatorDumpImpl( | 11 WebMemoryAllocatorDumpImpl::WebMemoryAllocatorDumpImpl( |
12 base::trace_event::MemoryAllocatorDump* memory_allocator_dump) | 12 base::trace_event::MemoryAllocatorDump* memory_allocator_dump) |
13 : memory_allocator_dump_(memory_allocator_dump), | 13 : memory_allocator_dump_(memory_allocator_dump), |
14 guid_(memory_allocator_dump->guid().ToUint64()) { | 14 guid_(memory_allocator_dump->guid().ToUint64()) { |
15 } | 15 } |
16 | 16 |
17 WebMemoryAllocatorDumpImpl::~WebMemoryAllocatorDumpImpl() { | 17 WebMemoryAllocatorDumpImpl::~WebMemoryAllocatorDumpImpl() { |
18 } | 18 } |
19 | 19 |
20 void WebMemoryAllocatorDumpImpl::addScalar(const char* name, | 20 void WebMemoryAllocatorDumpImpl::addScalar(const char* name, |
21 const char* units, | 21 const char* units, |
22 uint64_t value) { | 22 uint64_t value) { |
23 memory_allocator_dump_->AddScalar(name, units, value); | 23 memory_allocator_dump_->AddScalar(name, units, value); |
24 } | 24 } |
25 | 25 |
26 void WebMemoryAllocatorDumpImpl::addScalarF(const char* name, | 26 void WebMemoryAllocatorDumpImpl::addScalarF(const char* name, |
27 const char* units, | 27 const char* units, |
28 double value) { | 28 double value) { |
29 memory_allocator_dump_->AddScalarF(name, units, value); | 29 memory_allocator_dump_->AddScalarF(name, units, value); |
30 } | 30 } |
31 | 31 |
32 void WebMemoryAllocatorDumpImpl::addString(const char* name, | 32 void WebMemoryAllocatorDumpImpl::addString(const char* name, |
33 const char* units, | 33 const char* units, |
34 const blink::WebString& value) { | 34 const blink::WebString& value) { |
35 memory_allocator_dump_->AddString(name, units, value.utf8()); | 35 memory_allocator_dump_->AddString(name, units, value.utf8()); |
36 } | 36 } |
37 | 37 |
38 WebMemoryAllocatorDumpGuid WebMemoryAllocatorDumpImpl::guid() const { | 38 blink::WebMemoryAllocatorDumpGuid WebMemoryAllocatorDumpImpl::guid() const { |
39 return guid_; | 39 return guid_; |
40 } | 40 } |
41 | 41 } // namespace content |
42 } // namespace blink | |
OLD | NEW |