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

Side by Side Diff: tests/TraceMemoryDumpTest.cpp

Issue 1310123007: Add support for light dumps in SkTraceMemoryDump interface. (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: Fixing typo. Created 5 years, 2 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 | « src/core/SkResourceCache.cpp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright 2015 Google Inc. 2 * Copyright 2015 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkTraceMemoryDump.h" 8 #include "SkTraceMemoryDump.h"
9 9
10 #include "Test.h" 10 #include "Test.h"
11 11
12 /* 12 /*
13 * Build test for SkTraceMemoryDump. 13 * Build test for SkTraceMemoryDump.
14 */ 14 */
15 class TestSkTraceMemoryDump : public SkTraceMemoryDump { 15 class TestSkTraceMemoryDump : public SkTraceMemoryDump {
16 public: 16 public:
17 TestSkTraceMemoryDump() { } 17 TestSkTraceMemoryDump() { }
18 ~TestSkTraceMemoryDump() override { } 18 ~TestSkTraceMemoryDump() override { }
19 19
20 void dumpNumericValue(const char* dumpName, const char* valueName, const cha r* units, 20 void dumpNumericValue(const char* dumpName, const char* valueName, const cha r* units,
21 uint64_t value) override { } 21 uint64_t value) override { }
22 void setMemoryBacking(const char* dumpName, const char* backingType, 22 void setMemoryBacking(const char* dumpName, const char* backingType,
23 const char* backingObjectId) override { } 23 const char* backingObjectId) override { }
24 void setDiscardableMemoryBacking( 24 void setDiscardableMemoryBacking(
25 const char* dumpName, 25 const char* dumpName,
26 const SkDiscardableMemory& discardableMemoryObject) override { } 26 const SkDiscardableMemory& discardableMemoryObject) override { }
27 LevelOfDetail getRequestedDetails() const override {
28 return SkTraceMemoryDump::kObjectsBreakdowns_LevelOfDetail;
29 }
27 }; 30 };
28 31
29 DEF_TEST(SkTraceMemoryDump, reporter) { 32 DEF_TEST(SkTraceMemoryDump, reporter) {
30 TestSkTraceMemoryDump x; 33 TestSkTraceMemoryDump x;
31 x.dumpNumericValue("foobar", "size", "bytes", 42); 34 x.dumpNumericValue("foobar", "size", "bytes", 42);
35 if (x.getRequestedDetails() == SkTraceMemoryDump::kObjectsBreakdowns_LevelOf Detail) {
36 x.dumpNumericValue("foobar/object1", "size", "bytes", 23);
37 }
32 } 38 }
OLDNEW
« no previous file with comments | « src/core/SkResourceCache.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698