Roll src/third_party/WebKit d9c6159:8139f33 (svn 201974:201975)
[chromium-blink-merge.git] / skia / ext / skia_memory_dump_provider_unittest.cc
blob915323b6a3ea158328927e2623d1447858d49778
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.
5 #include "base/trace_event/process_memory_dump.h"
6 #include "skia/ext/skia_memory_dump_provider.h"
7 #include "testing/gtest/include/gtest/gtest.h"
9 namespace skia {
11 // Tests if the skia dump provider dumps without crashing.
12 TEST(SkiaMemoryDumpProviderTest, OnMemoryDump) {
13 scoped_ptr<base::trace_event::ProcessMemoryDump> process_memory_dump(
14 new base::trace_event::ProcessMemoryDump(nullptr));
15 base::trace_event::MemoryDumpArgs dump_args = {
16 base::trace_event::MemoryDumpArgs::LevelOfDetail::HIGH};
17 SkiaMemoryDumpProvider::GetInstance()->OnMemoryDump(
18 dump_args, process_memory_dump.get());
20 ASSERT_TRUE(process_memory_dump->GetAllocatorDump("skia/sk_glyph_cache"));
23 } // namespace skia