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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py

Issue 2678273004: Remove unused methods in webkitpy/layout_tests/. (Closed)
Patch Set: Created 3 years, 10 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/layout_tests/port/linux.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
index d78ae0b31b189e151a152ec85b2ac487cfb9a2e2..60a6863b11d784e0b8aedfac0b88321a9e02987a 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/linux.py
@@ -142,14 +142,6 @@ class LinuxPort(base.Port):
self._filesystem.rmtree(dummy_home)
self.host.environ['HOME'] = self._original_home
- def _check_apache_install(self):
- result = self._check_file_exists(self.path_to_apache(), "apache2")
- result = self._check_file_exists(self.path_to_apache_config_file(), "apache2 config file") and result
- if not result:
- _log.error(' Please install using: "sudo apt-get install apache2 libapache2-mod-php5"')
- _log.error('')
- return result
-
def _path_to_driver(self, target=None):
binary_name = self.driver_name()
return self._build_path_with_target(target, binary_name)

Powered by Google App Engine
This is Rietveld 408576698