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

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

Issue 2136793002: Remove all unused variables. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 5 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/android.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
index 4dff0467fde74d7b7e330be062844859cba74a8f..d8a9e5ed1034088a0c36bb87c9ed1cb112bf0edd 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/port/android.py
@@ -223,7 +223,7 @@ class AndroidCommands(object):
def restart_adb(self):
pids = self.extract_pids('adbd')
if pids:
- output = self.run(['shell', 'kill', '-' + str(signal.SIGTERM)] + pids)
+ self.run(['shell', 'kill', '-' + str(signal.SIGTERM)] + pids)
self.run(['wait-for-device'])
def restart_as_root(self):
@@ -987,7 +987,7 @@ class ChromiumAndroidDriver(driver.Driver):
def _push_fonts(self, log_callback):
path_to_ahem_font = self._port._build_path('AHEM____.TTF')
self._push_file_if_needed(path_to_ahem_font, self._driver_details.device_fonts_directory() + 'AHEM____.TTF', log_callback)
- for (host_dirs, font_file, package) in HOST_FONT_FILES:
+ for (host_dirs, font_file, _) in HOST_FONT_FILES:
for host_dir in host_dirs:
host_font_path = host_dir + font_file
if self._port._check_file_exists(host_font_path, '', more_logging=False):

Powered by Google App Engine
This is Rietveld 408576698