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

Side by Side Diff: skia/ext/skia_memory_dump_provider.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, 4 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 unified diff | Download patch
« no previous file with comments | « skia/ext/skia_memory_dump_provider.h ('k') | skia/ext/skia_memory_dump_provider_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(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 "skia_memory_dump_provider.h"
6
7 #include "base/trace_event/memory_allocator_dump.h"
8 #include "base/trace_event/memory_dump_manager.h"
9 #include "base/trace_event/process_memory_dump.h"
10 #include "third_party/skia/include/core/SkGraphics.h"
11 #include "third_party/skia/src/core/SkResourceCache.h"
12
13 namespace skia {
14
15 // static
16 SkiaMemoryDumpProvider* SkiaMemoryDumpProvider::GetInstance() {
17 return Singleton<SkiaMemoryDumpProvider,
18 LeakySingletonTraits<SkiaMemoryDumpProvider>>::get();
19 }
20
21 SkiaMemoryDumpProvider::SkiaMemoryDumpProvider() {}
22
23 SkiaMemoryDumpProvider::~SkiaMemoryDumpProvider() {}
24
25 bool SkiaMemoryDumpProvider::OnMemoryDump(
26 base::trace_event::ProcessMemoryDump* process_memory_dump) {
27 auto font_mad =
28 process_memory_dump->CreateAllocatorDump("skia/sk_font_cache");
29 font_mad->AddScalar("size", "bytes", SkGraphics::GetFontCacheUsed());
30 font_mad->AddScalar("count", "objects", SkGraphics::GetFontCacheCountUsed());
31
32 auto resource_mad =
33 process_memory_dump->CreateAllocatorDump("skia/sk_resource_cache");
34 resource_mad->AddScalar("size", "bytes",
35 SkResourceCache::GetTotalBytesUsed());
36 // TODO(ssid): crbug.com/503168. Add sub-allocation edges from discardable or
37 // malloc memory dumps to avoid double counting.
38
39 return true;
40 }
41
42 } // namespace skia
OLDNEW
« no previous file with comments | « skia/ext/skia_memory_dump_provider.h ('k') | skia/ext/skia_memory_dump_provider_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698