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

Unified Diff: tools/task_kill.py

Issue 2684993007: Add "Chrome Helper" to taskkill script on macos (Closed)
Patch Set: Created 3 years, 10 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 ed8b55521bfc73a265367dedb9ea4d9e3305fb33..44c8e2ee966ce8802498dbd728902661e191abfe 100755
--- a/tools/task_kill.py
+++ b/tools/task_kill.py
@@ -46,6 +46,7 @@ EXECUTABLE_NAMES = {
},
'macos': {
'chrome': 'Chrome',
+ 'chrome_helper': 'Chrome Helper',
'content_shell': 'Content Shell',
'dart': 'dart',
'firefox': 'firefox',
@@ -210,6 +211,7 @@ def KillBrowsers():
# We don't give error on killing chrome. It happens quite often that the
# browser controller fails in killing chrome, so we silently do it here.
Kill('chrome')
+ status += Kill('chrome_helper')
status += Kill('iexplore')
status += Kill('safari')
status += Kill('content_shell')
« 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