diff options
Diffstat (limited to 'tools/android/adb_profile_chrome/systrace_controller.py')
-rw-r--r-- | tools/android/adb_profile_chrome/systrace_controller.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/android/adb_profile_chrome/systrace_controller.py b/tools/android/adb_profile_chrome/systrace_controller.py index 369bc88..3ec4cc7 100644 --- a/tools/android/adb_profile_chrome/systrace_controller.py +++ b/tools/android/adb_profile_chrome/systrace_controller.py @@ -37,7 +37,7 @@ class SystraceController(controllers.BaseController): @staticmethod def GetCategories(device): - return device.old_interface.RunShellCommand('atrace --list_categories') + return device.RunShellCommand('atrace --list_categories') def StartTracing(self, _): self._thread = threading.Thread(target=self._CollectData) |