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

Unified Diff: tools/memory_inspector/memory_inspector/backends/android/android_backend.py

Issue 143263017: Make api_strict_mode the default in AndroidCommands. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix more cases Created 6 years, 10 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 | « build/android/screenshot.py ('k') | tools/telemetry/telemetry/core/backends/adb_commands.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/memory_inspector/memory_inspector/backends/android/android_backend.py
diff --git a/tools/memory_inspector/memory_inspector/backends/android/android_backend.py b/tools/memory_inspector/memory_inspector/backends/android/android_backend.py
index b203aaed6f854241d244f4a0728c2415abe06421..65a1b4b704707f183d7c0ca309acf80961ab5963 100644
--- a/tools/memory_inspector/memory_inspector/backends/android/android_backend.py
+++ b/tools/memory_inspector/memory_inspector/backends/android/android_backend.py
@@ -52,8 +52,7 @@ class AndroidBackend(backends.Backend):
os.environ['PATH'] = os.pathsep.join([self.settings['adb_path'],
os.environ['PATH']])
for device in android_commands.GetAttachedDevices():
- yield AndroidDevice(
- self, android_commands.AndroidCommands(device, api_strict_mode=True))
+ yield AndroidDevice(self, android_commands.AndroidCommands(device))
@property
def name(self):
« no previous file with comments | « build/android/screenshot.py ('k') | tools/telemetry/telemetry/core/backends/adb_commands.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698