| OLD | NEW |
| 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright 2012 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 from __future__ import absolute_import | 4 from __future__ import absolute_import |
| 5 | 5 |
| 6 from telemetry.core import util | 6 from telemetry.core import util |
| 7 | 7 |
| 8 util.AddDirToPythonPath(util.GetChromiumSrcDir(), 'build', 'util', 'lib', | 8 util.AddDirToPythonPath(util.GetChromiumSrcDir(), 'build', 'util', 'lib', |
| 9 'common') | 9 'common') |
| 10 import perf_tests_results_helper # pylint: disable=F0401 | 10 import perf_tests_results_helper # pylint: disable=F0401 |
| 11 | 11 |
| 12 | 12 |
| 13 FlattenList = \ | 13 FlattenList = \ |
| 14 perf_tests_results_helper.FlattenList | 14 perf_tests_results_helper.FlattenList |
| 15 GeomMeanAndStdDevFromHistogram = \ | 15 GeomMeanAndStdDevFromHistogram = \ |
| 16 perf_tests_results_helper.GeomMeanAndStdDevFromHistogram | 16 perf_tests_results_helper.GeomMeanAndStdDevFromHistogram |
| 17 PrintPerfResult = \ | 17 PrintPerfResult = \ |
| 18 perf_tests_results_helper.PrintPerfResult | 18 perf_tests_results_helper.PrintPerfResult |
| 19 PrintPages = \ | 19 PrintPages = \ |
| 20 perf_tests_results_helper.PrintPages | 20 perf_tests_results_helper.PrintPages |
| OLD | NEW |