Index: tools/profile_chrome/perf_controller.py |
diff --git a/tools/profile_chrome/perf_controller.py b/tools/profile_chrome/perf_controller.py |
index 06992cfd134bfb3ba9de1f099418492db80de3c3..9e1096611e517bd40275377a340ae9e6fc8d242f 100644 |
--- a/tools/profile_chrome/perf_controller.py |
+++ b/tools/profile_chrome/perf_controller.py |
@@ -47,8 +47,8 @@ _PERF_OPTIONS = [ |
class _PerfProfiler(object): |
def __init__(self, device, perf_binary, categories): |
self._device = device |
- self._output_file = android_commands.DeviceTempFile( |
- self._device.old_interface, prefix='perf_output') |
+ self._output_file = device_temp_file.DeviceTempFile( |
Sami
2015/05/13 12:58:51
Missing import?
jbudorick
2015/05/13 21:49:29
Done.
|
+ self._device.adb, prefix='perf_output') |
self._log_file = tempfile.TemporaryFile() |
# TODO(jbudorick) Look at providing a way to unhandroll this once the |