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

Unified Diff: tools/perf/metrics/timeline_unittest.py

Issue 436453002: Remove page_measurement_results. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address review comments Created 6 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/perf/metrics/timeline_unittest.py
diff --git a/tools/perf/metrics/timeline_unittest.py b/tools/perf/metrics/timeline_unittest.py
index 243aa7acfa9589b3cd699748ce94df264b6a9270..37b4735dd5cb065fe38cc44f4bb9d815a6224673 100644
--- a/tools/perf/metrics/timeline_unittest.py
+++ b/tools/perf/metrics/timeline_unittest.py
@@ -15,7 +15,7 @@ def _GetInteractionRecord(start, end):
class LoadTimesTimelineMetric(unittest.TestCase):
def GetResults(self, metric, model, renderer_thread, interaction_records):
- results = test_page_measurement_results.TestPageMeasurementResults(self)
+ results = test_page_measurement_results.TestPageTestResults(self)
metric.AddResults(model, renderer_thread, interaction_records, results)
return results
@@ -90,7 +90,7 @@ class LoadTimesTimelineMetric(unittest.TestCase):
class ThreadTimesTimelineMetricUnittest(unittest.TestCase):
def GetResults(self, metric, model, renderer_thread, interaction_record):
- results = test_page_measurement_results.TestPageMeasurementResults(self)
+ results = test_page_measurement_results.TestPageTestResults(self)
metric.AddResults(model, renderer_thread, interaction_record,
results)
return results

Powered by Google App Engine
This is Rietveld 408576698