| OLD | NEW |
| 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() |
| OLD | NEW |