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

Unified Diff: tools/telemetry/telemetry/core/platform/win_platform_backend.py

Issue 723403003: Shotdown browser cooperatively with taskill on win platform. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address Tony's comment Created 6 years, 1 month 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 | « tools/telemetry/telemetry/core/platform/posix_platform_backend.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/telemetry/telemetry/core/platform/win_platform_backend.py
diff --git a/tools/telemetry/telemetry/core/platform/win_platform_backend.py b/tools/telemetry/telemetry/core/platform/win_platform_backend.py
index de9ec475741195492fa9b9b1674a84f39e95f404..9cadc8c2371814b19053dded9458aa0b1ffb38db 100644
--- a/tools/telemetry/telemetry/core/platform/win_platform_backend.py
+++ b/tools/telemetry/telemetry/core/platform/win_platform_backend.py
@@ -39,6 +39,7 @@ except ImportError:
shellcon = None
win32api = None
win32con = None
+ win32gui = None
win32process = None
win32security = None
@@ -362,3 +363,9 @@ class WinPlatformBackend(desktop_platform_backend.DesktopPlatformBackend):
finally:
sock.close()
return struct.unpack('Q', response)[0] >> start & ((1 << length) - 1)
+
+ def IsCooperativeShutdownSupported(self):
+ return True
+
+ def CooperativelyShutdown(self, proc):
+ subprocess.call(['taskkill', '/F', '/T', '/PID', str(proc.pid)])
Ken Russell (switch to Gerrit) 2014/11/14 18:51:38 This is far from a cooperative shutdown; it forcib
« no previous file with comments | « tools/telemetry/telemetry/core/platform/posix_platform_backend.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698