| Index: third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder.py
|
| diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder.py
|
| index 7b4a97c2381ea58e2f8e344f7c0f4956695cecc7..74d297631f060841bd8504569aad4e85cc1e4f01 100644
|
| --- a/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder.py
|
| +++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/webkit_finder.py
|
| @@ -117,12 +117,6 @@ class WebKitFinder(object):
|
| def path_from_blink_source(self, *comps):
|
| return self._filesystem.join(self._filesystem.join(self.webkit_base(), 'Source'), *comps)
|
|
|
| - def path_to_script(self, script_name):
|
| - """Returns the relative path to the script from the top of the WebKit tree."""
|
| - # This is intentionally relative in order to force callers to consider what
|
| - # their current working directory is (and change to the top of the tree if necessary).
|
| - return self._filesystem.join('Tools', 'Scripts', script_name)
|
| -
|
| def path_from_tools_scripts(self, *comps):
|
| return self._filesystem.join(self._filesystem.join(self.webkit_base(), 'Tools', 'Scripts'), *comps)
|
|
|
|
|