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

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

Issue 2719853003: [Telemetry refactor] Drop "2" from method calls to JS API (Closed)
Patch Set: Created 3 years, 10 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
« no previous file with comments | « tools/perf/page_sets/image_decoding_measurement.py ('k') | tools/perf/page_sets/infinite_scroll_cases.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/perf/page_sets/indexeddb_endure_page.py
diff --git a/tools/perf/page_sets/indexeddb_endure_page.py b/tools/perf/page_sets/indexeddb_endure_page.py
index fdee22c6ab801459c40070efd9aa9a1e2c7e5623..80feb6ec241afd5b2985b12aad0552101b21571f 100644
--- a/tools/perf/page_sets/indexeddb_endure_page.py
+++ b/tools/perf/page_sets/indexeddb_endure_page.py
@@ -15,11 +15,11 @@ class IndexedDBEndurePage(page_module.Page):
self._subtest = subtest
def RunPageInteractions(self, action_runner):
- action_runner.ExecuteJavaScript2(
+ action_runner.ExecuteJavaScript(
'window.testFilter = {{ subtest }};', subtest=self._subtest)
with action_runner.CreateInteraction('Action_Test'):
- action_runner.ExecuteJavaScript2('window.test();')
- action_runner.WaitForJavaScriptCondition2(
+ action_runner.ExecuteJavaScript('window.test();')
+ action_runner.WaitForJavaScriptCondition(
'window.done', timeout=600)
class IndexedDBEndurePageSet(story.StorySet):
« no previous file with comments | « tools/perf/page_sets/image_decoding_measurement.py ('k') | tools/perf/page_sets/infinite_scroll_cases.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698