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

Unified Diff: tools/telemetry/telemetry/web_perf/timeline_based_page_test.py

Issue 1647513002: Delete tools/telemetry. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 11 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
Index: tools/telemetry/telemetry/web_perf/timeline_based_page_test.py
diff --git a/tools/telemetry/telemetry/web_perf/timeline_based_page_test.py b/tools/telemetry/telemetry/web_perf/timeline_based_page_test.py
deleted file mode 100644
index fdde37a290ceacd134b4f91ca54e51a14a2174a0..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/web_perf/timeline_based_page_test.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# 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.
-
-from telemetry.page import page_test
-
-class TimelineBasedPageTest(page_test.PageTest):
- """Page test that collects metrics with TimelineBasedMeasurement.
-
- WillRunStory(), Measure() and DidRunStory() are all done in story_runner
- explicitly. We still need this wrapper around PageTest because it executes
- some browser related functions in the parent class, which is needed by
- Timeline Based Measurement benchmarks. This class will be removed after
- page_test's hooks are fully removed.
- """
- def __init__(self, tbm):
- super(TimelineBasedPageTest, self).__init__()
- self._measurement = tbm
-
- @property
- def measurement(self):
- return self._measurement
-
- def ValidateAndMeasurePage(self, page, tab, results):
- """Collect all possible metrics and added them to results."""
- # Measurement is done explicitly in story_runner for timeline based page
- # test.
- pass

Powered by Google App Engine
This is Rietveld 408576698