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

Unified Diff: tools/perf/benchmarks/maps_earth.py

Issue 1001043003: [Telemetry] Adds maps_earth test (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 9 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 | tools/perf/page_sets/data/maps_earth.json » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/benchmarks/maps_earth.py
diff --git a/tools/perf/benchmarks/maps_earth.py b/tools/perf/benchmarks/maps_earth.py
new file mode 100644
index 0000000000000000000000000000000000000000..96d2f7c8ff40bc6aef1ec20feaf849e848cd5a14
--- /dev/null
+++ b/tools/perf/benchmarks/maps_earth.py
@@ -0,0 +1,23 @@
+# Copyright 2015 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+"""Runs a Google Maps/Earth performance test.
+
+Surf Maps/Earth layer to exercise WebGL 3D model."""
+
+
+from measurements import no_op
+import page_sets
+from telemetry import benchmark
+
+
+#@benchmark.Disabled
+class MapsEarthBenchmark(benchmark.Benchmark):
+ """Basic Google Maps/Earth benchmarks."""
+ test = no_op.NoOp
+ page_set = page_sets.MapsEarthPageSet
+
+ @classmethod
+ def Name(cls):
+ return 'maps_earth'
« no previous file with comments | « no previous file | tools/perf/page_sets/data/maps_earth.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698