| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright 2014 The Chromium Authors. All rights reserved. | 2 # Copyright 2014 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 import logging | 6 import logging |
| 7 import os | 7 import os |
| 8 import subprocess | 8 import subprocess |
| 9 import time | 9 import time |
| 10 import sys | 10 import sys |
| (...skipping 137 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 148 app.wait() | 148 app.wait() |
| 149 if app.returncode != -SIGTERM: | 149 if app.returncode != -SIGTERM: |
| 150 copyfileobj(output_file, sys.stdout) | 150 copyfileobj(output_file, sys.stdout) |
| 151 self._apps = [] | 151 self._apps = [] |
| 152 | 152 |
| 153 | 153 |
| 154 @property | 154 @property |
| 155 def socket_path(self): | 155 def socket_path(self): |
| 156 """The path of the socket where the shell is listening for external apps.""" | 156 """The path of the socket where the shell is listening for external apps.""" |
| 157 return self._shell._socket_path | 157 return self._shell._socket_path |
| OLD | NEW |