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

Unified Diff: tools/telemetry/telemetry/core/backends/android_app_backend.py

Issue 858093003: Fix flaky testWebView on Android (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: review fix Created 5 years, 11 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 | « no previous file | tools/telemetry/telemetry/core/platform/android_platform.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/backends/android_app_backend.py
diff --git a/tools/telemetry/telemetry/core/backends/android_app_backend.py b/tools/telemetry/telemetry/core/backends/android_app_backend.py
index adcf69b33962cd97c648f0f7407647bbcb9d3e48..1960b6ea62c4130bc56b908cfe134da88534000f 100644
--- a/tools/telemetry/telemetry/core/backends/android_app_backend.py
+++ b/tools/telemetry/telemetry/core/backends/android_app_backend.py
@@ -31,6 +31,8 @@ class AndroidAppBackend(app_backend.AppBackend):
return self.platform_backend.adb
def _IsAppReady(self):
+ if self._is_app_ready_predicate is None:
+ return True
return self._is_app_ready_predicate(self.app)
def Start(self):
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/platform/android_platform.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698