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

Unified Diff: build/android/adb_reverse_forwarder.py

Issue 18522003: Remove unnecessary host parameter in forwarder. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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 | « no previous file | build/android/pylib/base/base_test_runner.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: build/android/adb_reverse_forwarder.py
diff --git a/build/android/adb_reverse_forwarder.py b/build/android/adb_reverse_forwarder.py
index ff6d77b159cc401c7108ec9369fc82b5d67097e6..e465ea77156795e39f951af21022c3ea9adfd6b7 100755
--- a/build/android/adb_reverse_forwarder.py
+++ b/build/android/adb_reverse_forwarder.py
@@ -32,9 +32,6 @@ def main(argv):
help='Verbose level (multiple times for more)')
parser.add_option('--device',
help='Serial number of device we should use.')
- parser.add_option('--host',
- help='Host address to forward to from the host machine. '
- '127.0.0.1 by default', default='127.0.0.1')
parser.add_option('--debug', action='store_const', const='Debug',
dest='build_type', default='Release',
help='Use Debug build of host tools instead of Release.')
@@ -57,7 +54,7 @@ def main(argv):
tool = CreateTool(None, adb)
forwarder_instance = forwarder.Forwarder(adb, options.build_type)
try:
- forwarder_instance.Run(port_pairs, tool, options.host)
+ forwarder_instance.Run(port_pairs, tool)
while True:
time.sleep(60)
except KeyboardInterrupt:
« no previous file with comments | « no previous file | build/android/pylib/base/base_test_runner.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698