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

Unified Diff: content/renderer/all_rendering_benchmarks.cc

Issue 10827421: Removed benchmark results object from rendering benchmarks, now one result per benchmark (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/gpu/gpu_benchmarking_extension.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/all_rendering_benchmarks.cc
diff --git a/content/renderer/all_rendering_benchmarks.cc b/content/renderer/all_rendering_benchmarks.cc
index efd799da2dc2124860b8e21dfaae5a23c05d9c0a..ddc2996567475c196bc219b410881f07426c458e 100644
--- a/content/renderer/all_rendering_benchmarks.cc
+++ b/content/renderer/all_rendering_benchmarks.cc
@@ -14,7 +14,6 @@
#include "base/memory/scoped_ptr.h"
#include "base/time.h"
#include "content/renderer/rendering_benchmark.h"
-#include "content/renderer/rendering_benchmark_results.h"
#include "skia/ext/platform_canvas.h"
#include "third_party/skia/include/core/SkPicture.h"
#include "third_party/skia/include/utils/SkNullCanvas.h"
@@ -54,14 +53,10 @@ class CustomPaintBenchmark
delete canvas;
}
- virtual void Run(content::RenderingBenchmarkResults* results,
- WebViewBenchmarkSupport* support) OVERRIDE {
+ virtual double Run(WebViewBenchmarkSupport* support) OVERRIDE {
paint_time_total_ = TimeDelta();
support->paint(this, paint_mode_);
- results->AddResult(name(),
- "paintTime",
- "s",
- paint_time_total_.InSecondsF());
+ return paint_time_total_.InMillisecondsF();
piman 2012/08/20 17:58:56 did you intend to switch from seconds to milliseco
dmurph 2012/08/20 19:30:08 Yeah, that's intended.
}
private:
@@ -84,30 +79,45 @@ class BitmapCanvasPaintBenchmark : public CustomPaintBenchmark {
}
};
-class NullCanvasPaintBenchmark : public CustomPaintBenchmark {
+class CanvasCountBenchmark
+ : public content::RenderingBenchmark,
+ public WebViewBenchmarkSupport::PaintClient {
public:
- NullCanvasPaintBenchmark(const std::string& name,
- WebViewBenchmarkSupport::PaintMode paint_mode)
- : CustomPaintBenchmark(name, paint_mode),
- canvas_count_(0) { }
+ CanvasCountBenchmark(const std::string& name,
+ WebViewBenchmarkSupport::PaintMode paint_mode)
+ : content::RenderingBenchmark(name),
+ canvas_count_(0),
+ paint_mode_(paint_mode) { }
+
+ virtual WebCanvas* willPaint(const WebSize& size) OVERRIDE {
+ ++canvas_count_;
+ return SkCreateNullCanvas();
+ }
+
+ virtual void didPaint(WebCanvas* canvas) OVERRIDE {
+ delete canvas;
+ }
- virtual void Run(content::RenderingBenchmarkResults* results,
- WebViewBenchmarkSupport* support) OVERRIDE {
+ virtual double Run(WebViewBenchmarkSupport* support) OVERRIDE {
canvas_count_ = 0;
- CustomPaintBenchmark::Run(results, support);
- results->AddResult(name(),
- "canvasCount",
- "i",
- canvas_count_);
+ support->paint(this, paint_mode_);
+ return canvas_count_;
}
+ private:
+ int canvas_count_;
+ const WebViewBenchmarkSupport::PaintMode paint_mode_;
+};
+
+class NullCanvasPaintBenchmark : public CustomPaintBenchmark {
+ public:
+ NullCanvasPaintBenchmark(const std::string& name,
+ WebViewBenchmarkSupport::PaintMode paint_mode)
+ : CustomPaintBenchmark(name, paint_mode) { }
private:
virtual WebCanvas* createCanvas(const WebSize& size) OVERRIDE {
- ++canvas_count_;
return SkCreateNullCanvas();
}
-
- int canvas_count_;
};
class SkPicturePaintBenchmark : public CustomPaintBenchmark {
@@ -163,14 +173,10 @@ class TiledReplayBenchmark
}
}
- virtual void Run(content::RenderingBenchmarkResults* results,
- WebViewBenchmarkSupport* support) {
+ virtual double Run(WebViewBenchmarkSupport* support) {
paint_time_total_ = TimeDelta();
support->paint(this, paint_mode_);
- results->AddResult(name(),
- "repaintTime",
- "s",
- paint_time_total_.InSecondsF());
+ return paint_time_total_.InMillisecondsF();
}
private:
@@ -239,40 +245,43 @@ namespace content {
ScopedVector<RenderingBenchmark> AllRenderingBenchmarks() {
ScopedVector<RenderingBenchmark> benchmarks;
benchmarks.push_back(new BitmapCanvasPaintBenchmark(
- "PaintEverythingToBitmap",
+ "PaintEverythingToBitmapMs",
WebViewBenchmarkSupport::PaintModeEverything));
benchmarks.push_back(new NullCanvasPaintBenchmark(
- "PaintEverythingToNullCanvas",
+ "PaintEverythingToNullCanvasMs",
+ WebViewBenchmarkSupport::PaintModeEverything));
+ benchmarks.push_back(new CanvasCountBenchmark(
+ "LayerCount",
WebViewBenchmarkSupport::PaintModeEverything));
benchmarks.push_back(new SkPicturePaintBenchmark(
- "PaintEverythingToSkPicture",
+ "PaintEverythingToSkPictureMs",
WebViewBenchmarkSupport::PaintModeEverything));
benchmarks.push_back(new SquareTiledReplayBenchmark(
- "RepaintEverythingTo256x256Bitmap",
+ "RepaintEverythingTo256x256BitmapMs",
WebViewBenchmarkSupport::PaintModeEverything,
256));
benchmarks.push_back(new SquareTiledReplayBenchmark(
- "RepaintEverythingTo128x128Bitmap",
+ "RepaintEverythingTo128x128BitmapMs",
WebViewBenchmarkSupport::PaintModeEverything,
128));
benchmarks.push_back(new SquareTiledReplayBenchmark(
- "RepaintEverythingTo512x512Bitmap",
+ "RepaintEverythingTo512x512BitmapMs",
WebViewBenchmarkSupport::PaintModeEverything,
512));
benchmarks.push_back(new LayerWidthTiledReplayBenchmark(
- "RepaintEverythingToLayerWidthx256Bitmap",
+ "RepaintEverythingToLayerWidthx256BitmapMs",
WebViewBenchmarkSupport::PaintModeEverything,
256));
benchmarks.push_back(new LayerWidthTiledReplayBenchmark(
- "RepaintEverythingToLayerWidthx128Bitmap",
+ "RepaintEverythingToLayerWidthx128BitmapMs",
WebViewBenchmarkSupport::PaintModeEverything,
128));
benchmarks.push_back(new LayerWidthTiledReplayBenchmark(
- "RepaintEverythingToLayerWidthx64Bitmap",
+ "RepaintEverythingToLayerWidthx64BitmapMs",
WebViewBenchmarkSupport::PaintModeEverything,
64));
benchmarks.push_back(new LayerWidthTiledReplayBenchmark(
- "RepaintEverythingToLayerWidthx512Bitmap",
+ "RepaintEverythingToLayerWidthx512BitmapMs",
WebViewBenchmarkSupport::PaintModeEverything,
512));
return benchmarks.Pass();
« no previous file with comments | « content/content_renderer.gypi ('k') | content/renderer/gpu/gpu_benchmarking_extension.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698