| Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
|
| index 618422e00e9abae56e12e98fba1a6eca48a19437..a1e219e0c04917a4a8f8b8a6ca116d1c891a696b 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_win.py
|
| @@ -38,6 +38,7 @@ _log = logging.getLogger(__name__)
|
|
|
|
|
| class DumpReaderWin(DumpReader):
|
| +
|
| """DumpReader for windows breakpad."""
|
|
|
| def __init__(self, host, build_dir):
|
| @@ -76,7 +77,7 @@ class DumpReaderWin(DumpReader):
|
|
|
| def _check_cdb_available(self):
|
| """Checks whether we can use cdb to symbolize minidumps."""
|
| - if self._cdb_available != None:
|
| + if self._cdb_available is not None:
|
| return self._cdb_available
|
|
|
| CDB_LOCATION_TEMPLATES = [
|
|
|