| 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 CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ | 5 #ifndef CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ |
| 6 #define CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ | 6 #define CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" |
| 8 #include "third_party/WebKit/public/platform/WebMemoryAllocatorDump.h" | 9 #include "third_party/WebKit/public/platform/WebMemoryAllocatorDump.h" |
| 9 | 10 |
| 10 namespace base { | 11 namespace base { |
| 11 namespace trace_event { | 12 namespace trace_event { |
| 12 class MemoryAllocatorDump; | 13 class MemoryAllocatorDump; |
| 13 } // namespace base | 14 } // namespace base |
| 14 } // namespace trace_event | 15 } // namespace trace_event |
| 15 | 16 |
| 16 namespace content { | 17 namespace content { |
| 17 | 18 |
| (...skipping 18 matching lines...) Expand all Loading... |
| 36 private: | 37 private: |
| 37 base::trace_event::MemoryAllocatorDump* memory_allocator_dump_; // Not owned. | 38 base::trace_event::MemoryAllocatorDump* memory_allocator_dump_; // Not owned. |
| 38 blink::WebMemoryAllocatorDumpGuid guid_; | 39 blink::WebMemoryAllocatorDumpGuid guid_; |
| 39 | 40 |
| 40 DISALLOW_COPY_AND_ASSIGN(WebMemoryAllocatorDumpImpl); | 41 DISALLOW_COPY_AND_ASSIGN(WebMemoryAllocatorDumpImpl); |
| 41 }; | 42 }; |
| 42 | 43 |
| 43 } // namespace content | 44 } // namespace content |
| 44 | 45 |
| 45 #endif // CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ | 46 #endif // CONTENT_CHILD_WEB_MEMORY_ALLOCATOR_DUMP_IMPL_H_ |
| OLD | NEW |