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

Unified Diff: tools/perf/page_sets/top_25_repaint.py

Issue 820063003: [Telemetry] Rename RunRepaint to RunPageInteractions (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years 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/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

Powered by Google App Engine
This is Rietveld 408576698