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

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

Issue 632013002: [Telemetry] Replace RunStressMemorey with RunPageInteraction (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 2 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/page_sets/mobile_memory.py
diff --git a/tools/perf/page_sets/mobile_memory.py b/tools/perf/page_sets/mobile_memory.py
index 17120a6de924018570c4d5345055e06d96205c72..222e108982d373e2f5685cd07576c8f91447db22 100644
--- a/tools/perf/page_sets/mobile_memory.py
+++ b/tools/perf/page_sets/mobile_memory.py
@@ -32,7 +32,7 @@ class GmailPage(MobileMemoryPage):
action_runner.Wait(15)
action_runner.ForceGarbageCollection()
- def RunStressMemory(self, action_runner):
+ def RunPageInteractions(self, action_runner):
for _ in xrange(3):
self.ReloadAndGc(action_runner)
@@ -46,7 +46,7 @@ class GoogleSearchPage(MobileMemoryPage):
url='https://www.google.com/search?site=&tbm=isch&q=google',
page_set=page_set)
- def RunStressMemory(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollPage()
@@ -75,7 +75,7 @@ class ScrollPage(MobileMemoryPage):
def __init__(self, url, page_set):
super(ScrollPage, self).__init__(url=url, page_set=page_set)
- def RunStressMemory(self, action_runner):
+ def RunPageInteractions(self, action_runner):
interaction = action_runner.BeginGestureInteraction(
'ScrollAction', is_smooth=True)
action_runner.ScrollPage()

Powered by Google App Engine
This is Rietveld 408576698