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

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

Issue 726563003: Shut down browser processes on Windows by sending WM_CLOSE messages. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Removed tab character 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
Index: tools/telemetry/telemetry/core/platform/platform_backend.py
diff --git a/tools/telemetry/telemetry/core/platform/platform_backend.py b/tools/telemetry/telemetry/core/platform/platform_backend.py
index 4264f035ea1ccfb61ed8195f3769e9d3b33d36d0..989b435f06d577d63766beabeb9df84d4844794c 100644
--- a/tools/telemetry/telemetry/core/platform/platform_backend.py
+++ b/tools/telemetry/telemetry/core/platform/platform_backend.py
@@ -123,11 +123,11 @@ class PlatformBackend(object):
# tied to the browser. https://crbug.com/424777
self._network_controller_backend.StopReplay()
- is_last_browser = len(self._running_browser_backends) == 1
+ is_last_browser = len(self._running_browser_backends) <= 1
if is_last_browser:
self.SetFullPerformanceModeEnabled(False)
- self._running_browser_backends.remove(browser_backend)
+ self._running_browser_backends.discard(browser_backend)
def GetBackendForBrowser(self, browser):
matches = [x for x in self._running_browser_backends
@@ -264,3 +264,24 @@ class PlatformBackend(object):
@property
def wpr_ca_cert_path(self):
return None
+
+ def IsCooperativeShutdownSupported(self):
+ """Indicates whether CooperativelyShutdown, below, is supported.
+ It is not necessary to implement it on all platforms."""
+ return False
+
+ def CooperativelyShutdown(self, proc, app_name):
+ """Cooperatively shut down the given process from subprocess.Popen.
+
+ Currently this is only implemented on Windows. See
+ crbug.com/424024 for background on why it was added.
+
+ Args:
+ proc: a process object returned from subprocess.Popen.
+ app_name: on Windows, is the prefix of the application's window
+ class name that should be searched for. This helps ensure
+ that only the application's windows are closed.
+
+ Returns True if it is believed the attempt succeeded.
+ """
+ raise NotImplementedError()
« no previous file with comments | « tools/telemetry/telemetry/core/platform/__init__.py ('k') | tools/telemetry/telemetry/core/platform/win_platform_backend.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698