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

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

Issue 2496063002: Rename WebKitFinder -> BlinkFinder. (Closed)
Patch Set: Created 4 years, 1 month 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_wpt.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_wpt.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_wpt.py
index c1c091ab719473b4cbb557fc2e659dd8cee3d02d..1a623a5c7a14ff31f3913178f4009ee41985d3ac 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_wpt.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/chromium_wpt.py
@@ -9,7 +9,7 @@ for use cases relating to the Web Platform Tests.
CHROMIUM_WPT_DIR = 'third_party/WebKit/LayoutTests/imported/wpt/'
from webkitpy.common.memoized import memoized
-from webkitpy.common.webkit_finder import WebKitFinder
+from webkitpy.common.blink_finder import BlinkFinder
class ChromiumWPT(object):
@@ -75,5 +75,5 @@ class ChromiumWPT(object):
@memoized
def absolute_chromium_wpt_dir(self):
- finder = WebKitFinder(self.host.filesystem)
- return finder.path_from_webkit_base('LayoutTests', 'imported', 'wpt')
+ finder = BlinkFinder(self.host.filesystem)
+ return finder.path_from_blink_base('LayoutTests', 'imported', 'wpt')

Powered by Google App Engine
This is Rietveld 408576698