Commit e91b0473 authored by bolian@chromium.org's avatar bolian@chromium.org

Rename tools/perf/metrics/io.py to resolve naming conflicts.

BUG=349610

Review URL: https://codereview.chromium.org/178943004

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@255303 0039d316-1c4b-4281-b951-d872f2087c98
parent f234be73
......@@ -19,7 +19,7 @@ import collections
import os
from metrics import cpu
from metrics import io
from metrics import iometric
from metrics import memory
from metrics import power
from metrics import speedindex
......@@ -98,7 +98,7 @@ class PageCycler(page_measurement.PageMeasurement):
def CustomizeBrowserOptions(self, options):
memory.MemoryMetric.CustomizeBrowserOptions(options)
power.PowerMetric.CustomizeBrowserOptions(options)
io.IOMetric.CustomizeBrowserOptions(options)
iometric.IOMetric.CustomizeBrowserOptions(options)
options.AppendExtraBrowserArgs('--js-flags=--expose_gc')
if options.v8_object_stats:
......@@ -172,7 +172,7 @@ class PageCycler(page_measurement.PageMeasurement):
tab, results, chart_name=chart_name_prefix+'speed_index')
def DidRunTest(self, browser, results):
io.IOMetric().AddSummaryResults(browser, results)
iometric.IOMetric().AddSummaryResults(browser, results)
def IsRunCold(self, url):
return (self.ShouldRunCold(url) or
......
# Copyright 2013 The Chromium Authors. All rights reserved.
# 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.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment