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 "base/trace_event/process_memory_dump.h" | 5 #include "base/trace_event/process_memory_dump.h" |
6 #include "skia/ext/skia_memory_dump_provider.h" | 6 #include "skia/ext/skia_memory_dump_provider.h" |
7 #include "testing/gtest/include/gtest/gtest.h" | 7 #include "testing/gtest/include/gtest/gtest.h" |
8 | 8 |
9 namespace skia { | 9 namespace skia { |
10 | 10 |
11 TEST(SkiaMemoryDumpProviderTest, OnMemoryDump) { | 11 TEST(SkiaMemoryDumpProviderTest, OnMemoryDump) { |
12 scoped_ptr<base::trace_event::ProcessMemoryDump> process_memory_dump( | 12 scoped_ptr<base::trace_event::ProcessMemoryDump> process_memory_dump( |
13 new base::trace_event::ProcessMemoryDump(nullptr)); | 13 new base::trace_event::ProcessMemoryDump(nullptr)); |
| 14 base::trace_event::MemoryDumpArgs dump_args = { |
| 15 base::trace_event::MemoryDumpArgs::LEVEL_OF_DETAIL_HIGH}; |
14 SkiaMemoryDumpProvider::GetInstance()->OnMemoryDump( | 16 SkiaMemoryDumpProvider::GetInstance()->OnMemoryDump( |
15 process_memory_dump.get()); | 17 dump_args, process_memory_dump.get()); |
16 | 18 |
17 ASSERT_TRUE(process_memory_dump->GetAllocatorDump("skia/sk_font_cache")); | 19 ASSERT_TRUE(process_memory_dump->GetAllocatorDump("skia/sk_font_cache")); |
18 ASSERT_TRUE(process_memory_dump->GetAllocatorDump("skia/sk_resource_cache")); | 20 ASSERT_TRUE(process_memory_dump->GetAllocatorDump("skia/sk_resource_cache")); |
19 } | 21 } |
20 | 22 |
21 } // namespace skia | 23 } // namespace skia |
OLD | NEW |