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

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

Issue 1953463002: Empty webkitpy/common/net/buildbot/__init__.py and update imports. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Remove the net/buildbot/ subdirectory; move the files into net/ and fix pylint warnings Created 4 years, 7 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/common/host.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
index 1f47fd762995a4b7d507fc5676c9f8e963e4c8d2..ab55062c6839119a0afbb8b0be28fa4f8e566fed 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/common/host.py
@@ -33,7 +33,8 @@ import sys
from webkitpy.common.checkout.scm.detection import SCMDetector
from webkitpy.common.memoized import memoized
-from webkitpy.common.net import buildbot, web
+from webkitpy.common.net.buildbot import BuildBot
+from webkitpy.common.net import web
from webkitpy.common.system.systemhost import SystemHost
from webkitpy.layout_tests.port.factory import PortFactory
@@ -50,7 +51,7 @@ class Host(SystemHost):
self._scm = None
# Everything below this line is WebKit-specific and belongs on a higher-level object.
- self.buildbot = buildbot.BuildBot()
+ self.buildbot = BuildBot()
# FIXME: Unfortunately Port objects are currently the central-dispatch objects of the NRWT world.
# In order to instantiate a port correctly, we have to pass it at least an executive, user, scm, and filesystem

Powered by Google App Engine
This is Rietveld 408576698