OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "base/trace_event/java_heap_dump_provider_android.h" |
| 6 |
| 7 #include "base/trace_event/process_memory_dump.h" |
| 8 #include "testing/gtest/include/gtest/gtest.h" |
| 9 |
| 10 namespace base { |
| 11 namespace trace_event { |
| 12 |
| 13 TEST(JavaHeapDumpProviderTest, JavaHeapDump) { |
| 14 auto jhdp = JavaHeapDumpProvider::GetInstance(); |
| 15 scoped_ptr<ProcessMemoryDump> pmd(new ProcessMemoryDump(nullptr)); |
| 16 |
| 17 jhdp->OnMemoryDump(pmd.get()); |
| 18 } |
| 19 |
| 20 } // namespace trace_event |
| 21 } // namespace base |
OLD | NEW |