Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Unified Diff: tools/task_kill.py

Issue 317423002: Kill java to terminate editor on linux. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698