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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/webkit_patch.py

Issue 2276713002: Remove Command.bind_to_tool. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 4 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/tool/webkit_patch.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/webkit_patch.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/webkit_patch.py
index ded0ac1ccba65a27af2e752a6c3a1ed1b4c2b20e..b6bf1fbd946232a31b7d7192127f1a838ddd5148 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/webkit_patch.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/webkit_patch.py
@@ -98,10 +98,6 @@ class WebKitPatch(Host):
]
self.help_command = HelpCommand()
self.commands.append(self.help_command)
- # FIXME: Since tool is passed to Command.execute, it may not be necessary to set a tool attribute on the
- # command objects here - maybe this should be done inside of Command.execute for commands that use self._tool.
- for command in self.commands:
- command.bind_to_tool(self)
def main(self, argv=None):
argv = argv or sys.argv

Powered by Google App Engine
This is Rietveld 408576698