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

Unified Diff: tools/telemetry/telemetry/internal/results/progress_reporter.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/internal/results/progress_reporter.py
diff --git a/tools/telemetry/telemetry/internal/results/progress_reporter.py b/tools/telemetry/telemetry/internal/results/progress_reporter.py
deleted file mode 100644
index 3eea9995897c21239b9641113420b408c6c6544c..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/internal/results/progress_reporter.py
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2014 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.
-
-
-class ProgressReporter(object):
- """A class that reports progress of a benchmark.
-
- The reporter produces output whenever a significant event happens
- during the progress of a benchmark, including (but not limited to):
- when a page run is started, when a page run finished, any failures
- during a page run.
-
- The default implementation outputs nothing.
- """
-
- def DidAddValue(self, value):
- pass
-
- def WillRunPage(self, page_test_results):
- pass
-
- def DidRunPage(self, page_test_results):
- pass
-
- def DidFinishAllTests(self, page_test_results):
- pass

Powered by Google App Engine
This is Rietveld 408576698