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

Unified Diff: Tools/Scripts/webkitpy/common/host.py

Issue 27055003: Remove a bunch of unused webkitpy code from tool/, common/checkout/ and common/config/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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
« no previous file with comments | « Tools/Scripts/webkitpy/common/config/ports_unittest.py ('k') | Tools/Scripts/webkitpy/common/host_mock.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/common/host.py
diff --git a/Tools/Scripts/webkitpy/common/host.py b/Tools/Scripts/webkitpy/common/host.py
index a8df7a5f929efd7e58f10cd0e8bd003496763bef..7671ea6201cdabef925a53762096a56047be5ef4 100644
--- a/Tools/Scripts/webkitpy/common/host.py
+++ b/Tools/Scripts/webkitpy/common/host.py
@@ -31,7 +31,6 @@ import logging
import os
import sys
-from webkitpy.common.checkout import Checkout
from webkitpy.common.checkout.scm.detection import SCMDetector
from webkitpy.common.memoized import memoized
from webkitpy.common.net import buildbot, web
@@ -48,9 +47,7 @@ class Host(SystemHost):
SystemHost.__init__(self)
self.web = web.Web()
- # FIXME: Checkout should own the scm object.
self._scm = None
- self._checkout = None
# Everything below this line is WebKit-specific and belongs on a higher-level object.
self.buildbot = buildbot.BuildBot()
@@ -128,14 +125,10 @@ class Host(SystemHost):
self._engage_awesome_windows_hacks()
detector = SCMDetector(self.filesystem, self.executive)
self._scm = detector.default_scm(patch_directories)
- self._checkout = Checkout(self.scm())
def scm(self):
return self._scm
- def checkout(self):
- return self._checkout
-
def buildbot_for_builder_name(self, name):
if self.port_factory.get_from_builder_name(name).is_chromium():
return self.chromium_buildbot()
« no previous file with comments | « Tools/Scripts/webkitpy/common/config/ports_unittest.py ('k') | Tools/Scripts/webkitpy/common/host_mock.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698