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

Unified Diff: bench/PictureOverheadBench.cpp

Issue 2332153003: No \n in bench names. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Created 4 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: bench/PictureOverheadBench.cpp
diff --git a/bench/PictureOverheadBench.cpp b/bench/PictureOverheadBench.cpp
index 3bd9fb0bd9e074cd1545a15b1218fb5e47efc77f..27424a24390d296dbdc2354edff1ac143a04ad66 100644
--- a/bench/PictureOverheadBench.cpp
+++ b/bench/PictureOverheadBench.cpp
@@ -17,7 +17,7 @@
template <int kDraws, bool kLite>
struct PictureOverheadBench : public Benchmark {
PictureOverheadBench() {
- fName.appendf("picture_overhead_%d%s\n", kDraws, kLite ? "_lite" : "");
+ fName.appendf("picture_overhead_%d%s", kDraws, kLite ? "_lite" : "");
}
const char* onGetName() override { return fName.c_str(); }
bool isSuitableFor(Backend backend) override { return backend == kNonRendering_Backend; }
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698