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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/directory_owners_extractor.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/w3c/directory_owners_extractor.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/directory_owners_extractor.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/directory_owners_extractor.py
index 3da67383a6c311b1ff1395a9f38cc346ed1584c6..bd2db9143a57f3d34fe916eee035e9de918940a2 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/directory_owners_extractor.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/directory_owners_extractor.py
@@ -5,15 +5,15 @@
import collections
import re
+from webkitpy.common.path_finder import PathFinder
from webkitpy.common.system.filesystem import FileSystem
-from webkitpy.common.webkit_finder import WebKitFinder
class DirectoryOwnersExtractor(object):
def __init__(self, filesystem=None):
self.filesystem = filesystem or FileSystem
- self.finder = WebKitFinder(filesystem)
+ self.finder = PathFinder(filesystem)
self.owner_map = None
def read_owner_map(self):
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/common.py ('k') | third_party/WebKit/Tools/Scripts/webkitpy/w3c/test_copier.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698