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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.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/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 5320390a912af079f232830bddb222397888ea3a..83ff00cdc454c3d05252509930c0bbae6ecbe2f3 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_finder.py
@@ -3,16 +3,16 @@
# found in the LICENSE file.
from webkitpy.common.memoized import memoized
-from webkitpy.common.webkit_finder import WebKitFinder
+from webkitpy.common.path_finder import PathFinder
@memoized
def absolute_chromium_wpt_dir(host):
- finder = WebKitFinder(host.filesystem)
+ finder = PathFinder(host.filesystem)
return finder.path_from_layout_tests('external', 'wpt')
@memoized
def absolute_chromium_dir(host):
- finder = WebKitFinder(host.filesystem)
+ finder = PathFinder(host.filesystem)
return finder.chromium_base()

Powered by Google App Engine
This is Rietveld 408576698