Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(698)

Unified Diff: skia/ext/skia_memory_dump_provider_unittest.cc

Issue 1253403002: [tracing] Adding Skia memory dump provider with cache totals (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Including correct header. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « skia/ext/skia_memory_dump_provider.cc ('k') | skia/skia_chrome.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: skia/ext/skia_memory_dump_provider_unittest.cc
diff --git a/skia/ext/skia_memory_dump_provider_unittest.cc b/skia/ext/skia_memory_dump_provider_unittest.cc
new file mode 100644
index 0000000000000000000000000000000000000000..bea4a8b1fc9e86112da0ae8f70544a23b261ddac
--- /dev/null
+++ b/skia/ext/skia_memory_dump_provider_unittest.cc
@@ -0,0 +1,21 @@
+// Copyright 2015 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "base/trace_event/process_memory_dump.h"
+#include "skia/ext/skia_memory_dump_provider.h"
+#include "testing/gtest/include/gtest/gtest.h"
+
+namespace skia {
+
+TEST(SkiaMemoryDumpProviderTest, OnMemoryDump) {
+ scoped_ptr<base::trace_event::ProcessMemoryDump> process_memory_dump(
+ new base::trace_event::ProcessMemoryDump(nullptr));
+ SkiaMemoryDumpProvider::GetInstance()->OnMemoryDump(
+ process_memory_dump.get());
+
+ ASSERT_TRUE(process_memory_dump->GetAllocatorDump("skia/sk_font_cache"));
+ ASSERT_TRUE(process_memory_dump->GetAllocatorDump("skia/sk_resource_cache"));
+}
+
+} // namespace skia
« no previous file with comments | « skia/ext/skia_memory_dump_provider.cc ('k') | skia/skia_chrome.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698