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

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

Issue 17639006: Remove committer list, bugzilla, watchlist code and transitive closure of stuff. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: merge on top of thakis' change in r153020 Created 7 years, 6 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/host.py ('k') | Tools/Scripts/webkitpy/common/net/bugzilla/__init__.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/common/host_mock.py
diff --git a/Tools/Scripts/webkitpy/common/host_mock.py b/Tools/Scripts/webkitpy/common/host_mock.py
index daf5b35e20df62d5b9994d2baec9b745b2a89642..c18a3effda96907d3507566b37c07876e59261a5 100644
--- a/Tools/Scripts/webkitpy/common/host_mock.py
+++ b/Tools/Scripts/webkitpy/common/host_mock.py
@@ -28,11 +28,9 @@
from webkitpy.common.checkout.checkout_mock import MockCheckout
from webkitpy.common.checkout.scm.scm_mock import MockSCM
-from webkitpy.common.net.bugzilla.bugzilla_mock import MockBugzilla
from webkitpy.common.net.buildbot.buildbot_mock import MockBuildBot
from webkitpy.common.net.web_mock import MockWeb
from webkitpy.common.system.systemhost_mock import MockSystemHost
-from webkitpy.common.watchlist.watchlist_mock import MockWatchList
# New-style ports need to move down into webkitpy.common.
from webkitpy.layout_tests.port.factory import PortFactory
@@ -51,7 +49,6 @@ class MockHost(MockSystemHost):
# object doesn't either. This has caused at least one bug (see bug 89498).
if initialize_scm_by_default:
self.initialize_scm()
- self.bugs = MockBugzilla()
self.buildbot = MockBuildBot()
self._chromium_buildbot = MockBuildBot()
@@ -59,8 +56,6 @@ class MockHost(MockSystemHost):
# on the list of known ports should override this with a MockPortFactory.
self.port_factory = PortFactory(self)
- self._watch_list = MockWatchList()
-
def initialize_scm(self, patch_directories=None):
self._scm = MockSCM(filesystem=self.filesystem, executive=self.executive)
# Various pieces of code (wrongly) call filesystem.chdir(checkout_root).
@@ -75,7 +70,3 @@ class MockHost(MockSystemHost):
def chromium_buildbot(self):
return self._chromium_buildbot
-
- def watch_list(self):
- return self._watch_list
-
« no previous file with comments | « Tools/Scripts/webkitpy/common/host.py ('k') | Tools/Scripts/webkitpy/common/net/bugzilla/__init__.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698