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

Unified Diff: tools/telemetry/telemetry/value/histogram.py

Issue 1171803003: [Telemetry] Copy perf_result_data_type.py & perf_tests_results_helper.py to telemetry/util (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Kari's comments Created 5 years, 6 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/value/histogram.py
diff --git a/tools/telemetry/telemetry/value/histogram.py b/tools/telemetry/telemetry/value/histogram.py
index 64766c8a95aed00aba00bb1297018b4b67fa5d67..c55e895abae0d274a6bae731c80c9c5775b9bd53 100644
--- a/tools/telemetry/telemetry/value/histogram.py
+++ b/tools/telemetry/telemetry/value/histogram.py
@@ -3,10 +3,11 @@
# found in the LICENSE file.
import json
-from telemetry import perf_tests_helper
+from telemetry.util import perf_tests_helper
from telemetry import value as value_module
from telemetry.value import histogram_util
+
class HistogramValueBucket(object):
def __init__(self, low, high, count=0):
self.low = low

Powered by Google App Engine
This is Rietveld 408576698