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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/common/system/system_host.py

Issue 2624093003: Remove the overridden _stop_running_server method in WPTServe. (Closed)
Patch Set: Created 3 years, 11 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/common/system/system_host.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/system_host.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/system_host.py
index 9e36c28bbf0015df07daa03a2418b7571816542c..a23e5b62284e2d3b372c2d5332d42caf31e2e97e 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/system/system_host.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/system/system_host.py
@@ -59,3 +59,6 @@ class SystemHost(object):
def time(self):
return time.time()
+
+ def sleep(self, secs):
+ time.sleep(secs)

Powered by Google App Engine
This is Rietveld 408576698