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

Unified Diff: tools/telemetry/telemetry/page/page_measurement_value.py

Issue 20766003: [Telemetry] Add the ability to flush the system file cache to platform. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Support Android Created 7 years, 5 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/page/page_measurement_value.py
diff --git a/tools/telemetry/telemetry/page/page_measurement_value.py b/tools/telemetry/telemetry/page/page_measurement_value.py
index c2c8e0e09128d995fde035631a6eb7302e10171a..c37e9e180e59ba5f8959d48539be83b2c2cba43c 100644
--- a/tools/telemetry/telemetry/page/page_measurement_value.py
+++ b/tools/telemetry/telemetry/page/page_measurement_value.py
@@ -1,7 +1,7 @@
# Copyright (c) 2012 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 perf_tests_helper
+from telemetry.core import perf_tests_helper
def _Mean(l):
return float(sum(l)) / len(l) if len(l) > 0 else 0.0

Powered by Google App Engine
This is Rietveld 408576698