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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.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/chromium_finder.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.py
index 9b56adaf207385d1d9d426b220b3188a6ac2b532..5320390a912af079f232830bddb222397888ea3a 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.py
@@ -9,7 +9,7 @@ from webkitpy.common.webkit_finder import WebKitFinder
@memoized
def absolute_chromium_wpt_dir(host):
finder = WebKitFinder(host.filesystem)
- return finder.path_from_webkit_base('LayoutTests', 'external', 'wpt')
+ return finder.path_from_layout_tests('external', 'wpt')
@memoized

Powered by Google App Engine
This is Rietveld 408576698