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

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

Issue 2878873002: webkitpy: Rename WebKitFinder to PathFinder (Closed)
Patch Set: Created 3 years, 7 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_multipart.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart.py
index c84f2e554db57d12d529cfbb1588e3c130447616..6b50247f4f02b68033c67606fc6d822cd5f305e6 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/breakpad/dump_reader_multipart.py
@@ -31,7 +31,7 @@ import logging
import threading
import Queue
-from webkitpy.common.webkit_finder import WebKitFinder
+from webkitpy.common.path_finder import PathFinder
from webkitpy.layout_tests.breakpad.dump_reader import DumpReader
@@ -43,7 +43,7 @@ class DumpReaderMultipart(DumpReader):
def __init__(self, host, build_dir):
super(DumpReaderMultipart, self).__init__(host, build_dir)
- self._webkit_finder = WebKitFinder(host.filesystem)
+ self._path_finder = PathFinder(host.filesystem)
self._breakpad_tools_available = None
self._generated_symbols = False
@@ -119,7 +119,7 @@ class DumpReaderMultipart(DumpReader):
return self._host.filesystem.join(self._build_dir, 'minidump_stackwalk')
def _path_to_generate_breakpad_symbols(self):
- return self._webkit_finder.path_from_chromium_base(
+ return self._path_finder.path_from_chromium_base(
'components', 'crash', 'content', 'tools', 'generate_breakpad_symbols.py')
def _symbols_dir(self):

Powered by Google App Engine
This is Rietveld 408576698