Index: tools/perf/page_sets/top_25_repaint.py |
diff --git a/tools/perf/page_sets/top_25_repaint.py b/tools/perf/page_sets/top_25_repaint.py |
index e3a39e014a5b8ee4bff609e90bec135c231181fc..24a36d6aec36cf8333ecfe4a8497df2a8e0a82c5 100644 |
--- a/tools/perf/page_sets/top_25_repaint.py |
+++ b/tools/perf/page_sets/top_25_repaint.py |
@@ -17,14 +17,14 @@ class TopRepaintPage(page_module.Page): |
self.archive_data_file = 'data/top_25_repaint.json' |
self.credentials = credentials |
- def RunRepaint(self, action_runner): |
+ def RunPageInteractions(self, action_runner): |
action_runner.RepaintContinuously(seconds=5) |
def _CreatePageClassWithRepaintInteractions(page_cls): |
class DerivedRepaintPage(page_cls): # pylint: disable=W0232 |
- def RunRepaint(self, action_runner): |
+ def RunPageInteractions(self, action_runner): |
action_runner.RepaintContinuously(seconds=5) |
return DerivedRepaintPage |