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

Unified Diff: devil/devil/android/logcat_monitor.py

Issue 2144103002: [devil] Make LogcatMonitor expose its AdbWrapper instance via property. (Closed) Base URL: git@github.com:catapult-project/catapult.git@master
Patch Set: 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: devil/devil/android/logcat_monitor.py
diff --git a/devil/devil/android/logcat_monitor.py b/devil/devil/android/logcat_monitor.py
index 9ec94125b94c42225bfd6b58f888f95619173b40..bf30d409bf1e027e4b26e24acbf26e9ffc92c801 100644
--- a/devil/devil/android/logcat_monitor.py
+++ b/devil/devil/android/logcat_monitor.py
@@ -236,6 +236,10 @@ class LogcatMonitor(object):
'Need to call |Close| on the logcat monitor when done!')
self._record_file.close()
+ @property
+ def adb(self):
+ return self._adb
+
class LogcatMonitorCommandError(device_errors.CommandFailedError):
"""Exception for errors with logcat monitor commands."""
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698