From 962890568ddac03d8eb8467a2e81b6f2b7f046f0 Mon Sep 17 00:00:00 2001 From: mtklein Date: Wed, 10 Sep 2014 12:05:59 -0700 Subject: Distinguish common and unique names for skiaperf.com. Turns out we tack on the size post-facto in ResultsWriter::bench(), so the only place we need getUniqueName() to differ from getName() is SKPBench. BUG=skia: R=jcgregorio@google.com, mtklein@google.com Author: mtklein@chromium.org Review URL: https://codereview.chromium.org/552303004 --- bench/Benchmark.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'bench/Benchmark.cpp') diff --git a/bench/Benchmark.cpp b/bench/Benchmark.cpp index 04223dca43..9205ba97c9 100644 --- a/bench/Benchmark.cpp +++ b/bench/Benchmark.cpp @@ -24,6 +24,10 @@ const char* Benchmark::getName() { return this->onGetName(); } +const char* Benchmark::getUniqueName() { + return this->onGetUniqueName(); +} + SkIPoint Benchmark::getSize() { return this->onGetSize(); } -- cgit v1.2.3