| 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):
|
|
|