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

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

Issue 761863007: [Telemetry] Fix NotImplementedError exceptions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Lint and reorder 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 | « no previous file | tools/telemetry/telemetry/core/backends/app_backend.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 ddd84688b458fc971aafe2c967044cc2f2f6b5c2..ac38ae13bd3505bc37386569ffd19ff41a81fbc4 100644
--- a/tools/telemetry/telemetry/core/backends/android_app_backend.py
+++ b/tools/telemetry/telemetry/core/backends/android_app_backend.py
@@ -8,3 +8,22 @@ from telemetry.core.backends import app_backend
class AndroidAppBackend(app_backend.AppBackend):
def __init__(self):
super(AndroidAppBackend, self).__init__()
+
+ @property
+ def pid(self):
+ raise NotImplementedError
+
+ def Start(self):
+ raise NotImplementedError
+
+ def Close(self):
+ raise NotImplementedError
+
+ def IsAppRunning(self):
+ raise NotImplementedError
+
+ def GetStandardOutput(self):
+ raise NotImplementedError
+
+ def GetStackTrace(self):
+ raise NotImplementedError
« no previous file with comments | « no previous file | tools/telemetry/telemetry/core/backends/app_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698