diff options
author | jbudorick <jbudorick@chromium.org> | 2015-06-02 20:22:35 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2015-06-03 03:23:21 +0000 |
commit | c951c9e158d55d2be18f8226200679aee55f336d (patch) | |
tree | db4de2360710fa6b965cc377151c9c17882ad10f /build/android/pylib/device/device_utils.py | |
parent | 8247dfe6962829ae8122df4375099c036e39ac9e (diff) | |
download | chromium_src-c951c9e158d55d2be18f8226200679aee55f336d.zip chromium_src-c951c9e158d55d2be18f8226200679aee55f336d.tar.gz chromium_src-c951c9e158d55d2be18f8226200679aee55f336d.tar.bz2 |
[Android] Remove adb_commands from telemetry.
...because it's an abomination.
BUG=476709
Review URL: https://codereview.chromium.org/1141833003
Cr-Commit-Position: refs/heads/master@{#332538}
Diffstat (limited to 'build/android/pylib/device/device_utils.py')
-rw-r--r-- | build/android/pylib/device/device_utils.py | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/build/android/pylib/device/device_utils.py b/build/android/pylib/device/device_utils.py index 967809f..8709d15 100644 --- a/build/android/pylib/device/device_utils.py +++ b/build/android/pylib/device/device_utils.py @@ -1382,22 +1382,6 @@ class DeviceUtils(object): % (property_name, value), str(self)) @decorators.WithTimeoutAndRetriesFromInstance() - def GetABI(self, timeout=None, retries=None): - """Gets the device main ABI. - - Args: - timeout: timeout in seconds - retries: number of retries - - Returns: - The device's main ABI name. - - Raises: - CommandTimeoutError on timeout. - """ - return self.GetProp('ro.product.cpu.abi') - - @decorators.WithTimeoutAndRetriesFromInstance() def GetPids(self, process_name, timeout=None, retries=None): """Returns the PIDs of processes with the given name. |