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

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

Issue 826113003: [Telemetry] Rename RunSmoothness 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
« no previous file with comments | « tools/perf/page_sets/intl_ko_th_vi.py ('k') | tools/perf/page_sets/key_hit_test_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/key_desktop_sites.py
diff --git a/tools/perf/page_sets/key_desktop_sites.py b/tools/perf/page_sets/key_desktop_sites.py
index a51202761dccba01219b0283488c2765a2732452..afd9c337adc5b61a51c83f24bae7d0e3e779b9a1 100644
--- a/tools/perf/page_sets/key_desktop_sites.py
+++ b/tools/perf/page_sets/key_desktop_sites.py
@@ -12,7 +12,7 @@ class KeyDesktopSitesPage(page_module.Page):
url=url, page_set=page_set, credentials_path = 'data/credentials.json')
self.archive_data_file = 'data/key_desktop_sites.json'
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollPage()
@@ -44,7 +44,7 @@ class GmailPage(KeyDesktopSitesPage):
}'''
self.credentials = 'google'
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollPage()
@@ -81,7 +81,7 @@ class GoogleDrivePage(KeyDesktopSitesPage):
}'''
self.credentials = 'google'
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollPage()
@@ -104,7 +104,7 @@ class GoogleDocPage(KeyDesktopSitesPage):
}'''
self.credentials = 'google'
- def RunSmoothness(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollPage()
« no previous file with comments | « tools/perf/page_sets/intl_ko_th_vi.py ('k') | tools/perf/page_sets/key_hit_test_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698