Chromium Code Reviews| Index: tools/task_kill.py |
| diff --git a/tools/task_kill.py b/tools/task_kill.py |
| index b13dba5a958059750ccde981c501a533185aae84..796829c12db1eff5f58c16172886f7513ca08eb4 100755 |
| --- a/tools/task_kill.py |
| +++ b/tools/task_kill.py |
| @@ -38,6 +38,7 @@ EXECUTABLE_NAMES = { |
| 'content_shell': 'content_shell', |
| 'dart': 'dart', |
| 'editor': 'DartEditor', |
| + 'java': 'java', |
| 'eggplant': 'Eggplant', |
| 'firefox': 'firefox.exe', |
| 'git': 'git', |
| @@ -196,6 +197,7 @@ def KillDart(): |
| def KillEditor(): |
| status = Kill("editor") |
| if os_name == "linux": |
| + status += Kill("java") |
|
ricow1
2014/06/06 19:05:14
if the order here is really important, please add
|
| status += Kill("eggplant") |
| return status |