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

Unified Diff: tools/telemetry/telemetry/internal/results/output_formatter.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/output_formatter.py
diff --git a/tools/telemetry/telemetry/internal/results/output_formatter.py b/tools/telemetry/telemetry/internal/results/output_formatter.py
deleted file mode 100644
index 62262326392c559b344da3c6f519dd87d72ecc10..0000000000000000000000000000000000000000
--- a/tools/telemetry/telemetry/internal/results/output_formatter.py
+++ /dev/null
@@ -1,37 +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 OutputFormatter(object):
- """A formatter for PageTestResults.
-
- An OutputFormatter takes PageTestResults, formats the results
- (telemetry.value.Value instances), and output the formatted results
- in the given output stream.
-
- Examples of output formatter: CsvOutputFormatter produces results in
- CSV format."""
-
- def __init__(self, output_stream):
- """Constructs a new formatter that writes to the output_stream.
-
- Args:
- output_stream: The stream to write the formatted output to.
- """
- self._output_stream = output_stream
-
- def Format(self, page_test_results):
- """Formats the given PageTestResults into the output stream.
-
- This will be called once at the end of a benchmark.
-
- Args:
- page_test_results: A PageTestResults object containing all results
- from the current benchmark run.
- """
- raise NotImplementedError()
-
- @property
- def output_stream(self):
- return self._output_stream

Powered by Google App Engine
This is Rietveld 408576698