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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py

Issue 1806393002: Run yapf on files in webkit/layout_tests/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 9 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/layout_tests/servers/crash_service.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py
index c193d0b34b28885330fbd766e21c005df469c076..ed35d59dc1cf6f67348d8cf3110ad2222e3644e0 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/servers/crash_service.py
@@ -25,14 +25,12 @@
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
-
"""Start and stop the crash service as it is used by the layout tests."""
from webkitpy.layout_tests.servers import server_base
class CrashService(server_base.ServerBase):
-
def __init__(self, port_obj, crash_dumps_dir):
"""Args:
crash_dumps_dir: the absolute path to the directory where to store crash dumps
@@ -44,6 +42,4 @@ class CrashService(server_base.ServerBase):
self._env = None
self._pid_file = self._filesystem.join(self._runtime_path, '%s.pid' % self._name)
- self._start_cmd = [self._port_obj._path_to_crash_service(),
- '--dumps-dir=%s' % self._crash_dumps_dir,
- '--no-window']
+ self._start_cmd = [self._port_obj._path_to_crash_service(), '--dumps-dir=%s' % self._crash_dumps_dir, '--no-window']

Powered by Google App Engine
This is Rietveld 408576698