| 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 #ifndef WebMemoryAllocatorDumpImpl_h | 5 #ifndef CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ |
| 6 #define WebMemoryAllocatorDumpImpl_h | 6 #define CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| 11 #include "public/platform/WebMemoryAllocatorDump.h" | 11 #include "third_party/WebKit/public/platform/WebMemoryAllocatorDump.h" |
| 12 | 12 |
| 13 namespace base { | 13 namespace base { |
| 14 namespace trace_event { | 14 namespace trace_event { |
| 15 class MemoryAllocatorDump; | 15 class MemoryAllocatorDump; |
| 16 } // namespace base | 16 } // namespace base |
| 17 } // namespace trace_event | 17 } // namespace trace_event |
| 18 | 18 |
| 19 namespace blink { | 19 namespace content { |
| 20 | 20 |
| 21 // Implements the blink::WebMemoryAllocatorDump interface by means of proxying | 21 // Implements the blink::WebMemoryAllocatorDump interface by means of proxying |
| 22 // the Add*() calls to the underlying base::trace_event::MemoryAllocatorDump | 22 // the Add*() calls to the underlying base::trace_event::MemoryAllocatorDump |
| 23 // instance. | 23 // instance. |
| 24 class WebMemoryAllocatorDumpImpl : public blink::WebMemoryAllocatorDump { | 24 class WebMemoryAllocatorDumpImpl : public blink::WebMemoryAllocatorDump { |
| 25 public: | 25 public: |
| 26 explicit WebMemoryAllocatorDumpImpl( | 26 explicit WebMemoryAllocatorDumpImpl( |
| 27 base::trace_event::MemoryAllocatorDump* memory_allocator_dump); | 27 base::trace_event::MemoryAllocatorDump* memory_allocator_dump); |
| 28 ~WebMemoryAllocatorDumpImpl() override; | 28 ~WebMemoryAllocatorDumpImpl() override; |
| 29 | 29 |
| 30 // blink::WebMemoryAllocatorDump implementation. | 30 // blink::WebMemoryAllocatorDump implementation. |
| 31 void addScalar(const char* name, const char* units, uint64_t value) override; | 31 void addScalar(const char* name, const char* units, uint64_t value) override; |
| 32 void addScalarF(const char* name, const char* units, double value) override; | 32 void addScalarF(const char* name, const char* units, double value) override; |
| 33 void addString(const char* name, | 33 void addString(const char* name, |
| 34 const char* units, | 34 const char* units, |
| 35 const blink::WebString& value) override; | 35 const blink::WebString& value) override; |
| 36 | 36 |
| 37 blink::WebMemoryAllocatorDumpGuid guid() const override; | 37 blink::WebMemoryAllocatorDumpGuid guid() const override; |
| 38 | 38 |
| 39 private: | 39 private: |
| 40 base::trace_event::MemoryAllocatorDump* memory_allocator_dump_; // Not owned. | 40 base::trace_event::MemoryAllocatorDump* memory_allocator_dump_; // Not owned. |
| 41 blink::WebMemoryAllocatorDumpGuid guid_; | 41 blink::WebMemoryAllocatorDumpGuid guid_; |
| 42 | 42 |
| 43 DISALLOW_COPY_AND_ASSIGN(WebMemoryAllocatorDumpImpl); | 43 DISALLOW_COPY_AND_ASSIGN(WebMemoryAllocatorDumpImpl); |
| 44 }; | 44 }; |
| 45 | 45 |
| 46 } // namespace blink | 46 } // namespace content |
| 47 | 47 |
| 48 #endif // WebMemoryAllocatorDumpImpl_h | 48 #endif // CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ |
| OLD | NEW |