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

Unified Diff: tools/telemetry/telemetry/core/app.py

Issue 647193002: Adding App, AndroidApp, AppBackend, AndroidAppBackend, PossibleApp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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/telemetry/telemetry/core/app.py
diff --git a/tools/telemetry/telemetry/core/app.py b/tools/telemetry/telemetry/core/app.py
new file mode 100644
index 0000000000000000000000000000000000000000..35b44d262023c0f1e0ed9c1feae6e467a316cc45
--- /dev/null
+++ b/tools/telemetry/telemetry/core/app.py
@@ -0,0 +1,24 @@
+# Copyright 2012 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+class App(object):
+ """ A running application instance that can be controlled in a limited way.
+
+ Be sure to clean up after yourself by calling Close() when you are done with
+ the app. Or better yet:
+ with possible_app.Create() as app:
+ ... do all your operations on app here
+ """
+ def __init__(self, app_backend, platform_backend):
+ assert platform_backend.platform != None
+
+ self._app_backend = app_backend
+ self._platform_backend = platform_backend
+
+ @property
+ def platform(self):
+ return self._platform_backend.platform
+
+ def Close(self):
+ raise NotImplementedError()
« no previous file with comments | « tools/telemetry/telemetry/core/android_app.py ('k') | tools/telemetry/telemetry/core/backends/android_app_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698