| 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/MemoryCacheDumpProvider.h" | 5 #include "platform/MemoryCacheDumpProvider.h" |
| 6 | 6 |
| 7 #include "platform/web_process_memory_dump_impl.h" | 7 #include "platform/web_process_memory_dump_impl.h" |
| 8 #include "public/platform/WebMemoryDumpProvider.h" | |
| 9 | 8 |
| 10 namespace blink { | 9 namespace blink { |
| 11 | 10 |
| 12 DEFINE_TRACE(MemoryCacheDumpClient) | 11 DEFINE_TRACE(MemoryCacheDumpClient) |
| 13 { | 12 { |
| 14 } | 13 } |
| 15 | 14 |
| 16 MemoryCacheDumpProvider* MemoryCacheDumpProvider::instance() | 15 MemoryCacheDumpProvider* MemoryCacheDumpProvider::instance() |
| 17 { | 16 { |
| 18 DEFINE_STATIC_LOCAL(MemoryCacheDumpProvider, instance, ()); | 17 DEFINE_STATIC_LOCAL(MemoryCacheDumpProvider, instance, ()); |
| (...skipping 25 matching lines...) Expand all Loading... |
| 44 | 43 |
| 45 MemoryCacheDumpProvider::MemoryCacheDumpProvider() | 44 MemoryCacheDumpProvider::MemoryCacheDumpProvider() |
| 46 { | 45 { |
| 47 } | 46 } |
| 48 | 47 |
| 49 MemoryCacheDumpProvider::~MemoryCacheDumpProvider() | 48 MemoryCacheDumpProvider::~MemoryCacheDumpProvider() |
| 50 { | 49 { |
| 51 } | 50 } |
| 52 | 51 |
| 53 } // namespace blink | 52 } // namespace blink |
| OLD | NEW |