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

Side by Side 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 unified diff | Download patch
OLDNEW
1 # Copyright 2017 The Chromium Authors. All rights reserved. 1 # Copyright 2017 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from webkitpy.common.memoized import memoized 5 from webkitpy.common.memoized import memoized
6 from webkitpy.common.webkit_finder import WebKitFinder 6 from webkitpy.common.path_finder import PathFinder
7 7
8 8
9 @memoized 9 @memoized
10 def absolute_chromium_wpt_dir(host): 10 def absolute_chromium_wpt_dir(host):
11 finder = WebKitFinder(host.filesystem) 11 finder = PathFinder(host.filesystem)
12 return finder.path_from_layout_tests('external', 'wpt') 12 return finder.path_from_layout_tests('external', 'wpt')
13 13
14 14
15 @memoized 15 @memoized
16 def absolute_chromium_dir(host): 16 def absolute_chromium_dir(host):
17 finder = WebKitFinder(host.filesystem) 17 finder = PathFinder(host.filesystem)
18 return finder.chromium_base() 18 return finder.chromium_base()
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698