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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader.py

Issue 2256793002: Make docstrings more consistent using format-webkitpy. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make indentation of final quote based on parse tree (indentation prior to docstring node) rather th… Created 4 years, 3 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/breakpad/dump_reader.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader.py
index fb2ac516d00474521a26e72069262bd02f7ec8d4..2946801e47749580a15c6f125cc522252e3c4462 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader.py
@@ -37,7 +37,8 @@ class DumpReader(object):
def check_is_functional(self):
"""This routine must be implemented by subclasses.
- Returns True if this reader is functional."""
+ Returns True if this reader is functional.
+ """
raise NotImplementedError()
def crash_dumps_directory(self):
@@ -76,17 +77,20 @@ class DumpReader(object):
def _get_pid_from_dump(self, dump_file):
"""This routine must be implemented by subclasses.
- This routine returns the PID of the crashed process that produced the given dump_file."""
+ This routine returns the PID of the crashed process that produced the given dump_file.
+ """
raise NotImplementedError()
def _get_stack_from_dump(self, dump_file):
"""This routine must be implemented by subclasses.
- Returns the stack stored in the given breakpad dump_file."""
+ Returns the stack stored in the given breakpad dump_file.
+ """
raise NotImplementedError()
def _file_extension(self):
"""This routine must be implemented by subclasses.
- Returns the file extension of crash dumps written by breakpad."""
+ Returns the file extension of crash dumps written by breakpad.
+ """
raise NotImplementedError()

Powered by Google App Engine
This is Rietveld 408576698