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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/directory_owners_extractor.py

Issue 2831883002: webkitpy: Reduce usage of path_from_webkit_base(). (Closed)
Patch Set: . Created 3 years, 8 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 d701aac0c4fc12bb0162dbc06fe9e7193cc6a3f4..3da67383a6c311b1ff1395a9f38cc346ed1584c6 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
@@ -18,7 +18,7 @@ class DirectoryOwnersExtractor(object):
def read_owner_map(self):
"""Reads the W3CImportExpectations file and returns a map of directories to owners."""
- input_path = self.finder.path_from_webkit_base('LayoutTests', 'W3CImportExpectations')
+ input_path = self.finder.path_from_layout_tests('W3CImportExpectations')
input_contents = self.filesystem.read_text_file(input_path)
self.owner_map = self.lines_to_owner_map(input_contents.splitlines())

Powered by Google App Engine
This is Rietveld 408576698