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

Side by Side Diff: telemetry/telemetry/internal/app/__init__.py

Issue 2162963002: [polymer] Merge of master into polymer10-migration (Closed) Base URL: git@github.com:catapult-project/catapult.git@polymer10-migration
Patch Set: Merge polymer10-migration int polymer10-merge Created 4 years, 5 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 unified diff | Download patch
OLDNEW
1 # Copyright 2012 The Chromium Authors. All rights reserved. 1 # Copyright 2012 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 5
6 class App(object): 6 class App(object):
7 """ A running application instance that can be controlled in a limited way. 7 """ A running application instance that can be controlled in a limited way.
8 8
9 Be sure to clean up after yourself by calling Close() when you are done with 9 Be sure to clean up after yourself by calling Close() when you are done with
10 the app. Or better yet: 10 the app. Or better yet:
(...skipping 21 matching lines...) Expand all
32 self.Close() 32 self.Close()
33 33
34 def Close(self): 34 def Close(self):
35 raise NotImplementedError() 35 raise NotImplementedError()
36 36
37 def GetStandardOutput(self): 37 def GetStandardOutput(self):
38 return self._app_backend.GetStandardOutput() 38 return self._app_backend.GetStandardOutput()
39 39
40 def GetStackTrace(self): 40 def GetStackTrace(self):
41 return self._app_backend.GetStackTrace() 41 return self._app_backend.GetStackTrace()
42
43 def GetMostRecentMinidumpPath(self):
44 return self._app_backend.GetMostRecentMinidumpPath()
OLDNEW
« no previous file with comments | « telemetry/telemetry/internal/actions/utils.py ('k') | telemetry/telemetry/internal/backends/android_command_line_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698