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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/android.py

Issue 135583003: checkpoint Blink-side work to use Apache on Windows (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: new rollup patch Created 6 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: Tools/Scripts/webkitpy/layout_tests/port/android.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/android.py b/Tools/Scripts/webkitpy/layout_tests/port/android.py
index d3267f9a00fd34882863ffe89906ecc6ee18c570..71a8e02ba10a60b8fff87cce784306863493be8b 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/android.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/android.py
@@ -631,11 +631,11 @@ class AndroidPort(base.Port):
def _build_path_with_configuration(self, configuration, *comps):
return self._host_port._build_path_with_configuration(configuration, *comps)
- def _path_to_apache(self):
- return self._host_port._path_to_apache()
+ def path_to_apache(self):
+ return self._host_port.path_to_apache()
- def _path_to_apache_config_file(self):
- return self._host_port._path_to_apache_config_file()
+ def path_to_apache_config_file(self):
+ return self._host_port.path_to_apache_config_file()
def _path_to_driver(self, configuration=None):
return self._build_path_with_configuration(configuration, self._driver_details.apk_name())
@@ -646,13 +646,13 @@ class AndroidPort(base.Port):
def _path_to_image_diff(self):
return self._host_port._path_to_image_diff()
- def _path_to_lighttpd(self):
+ def path_to_lighttpd(self):
return self._host_port._path_to_lighttpd()
- def _path_to_lighttpd_modules(self):
+ def path_to_lighttpd_modules(self):
return self._host_port._path_to_lighttpd_modules()
- def _path_to_lighttpd_php(self):
+ def path_to_lighttpd_php(self):
return self._host_port._path_to_lighttpd_php()
def _path_to_wdiff(self):
« no previous file with comments | « Tools/Scripts/webkitpy/layout_tests/controllers/manager_unittest.py ('k') | Tools/Scripts/webkitpy/layout_tests/port/base.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698