diff options
author | michaelbai@chromium.org <michaelbai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-12 23:39:16 +0000 |
---|---|---|
committer | michaelbai@chromium.org <michaelbai@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-09-12 23:39:16 +0000 |
commit | e252f6d2aa8f393c3c1fdb0e416227eab8c89959 (patch) | |
tree | b52b26815b91ac04a2260bf5b0ee44a8e1732183 /tools/android | |
parent | d9fd5fb8af432f673ef83c085afcd97f62e80d04 (diff) | |
download | chromium_src-e252f6d2aa8f393c3c1fdb0e416227eab8c89959.zip chromium_src-e252f6d2aa8f393c3c1fdb0e416227eab8c89959.tar.gz chromium_src-e252f6d2aa8f393c3c1fdb0e416227eab8c89959.tar.bz2 |
Fix the error when compiling tools/android with clang
This error was introduced by https://chromiumcodereview.appspot.com/10919213 from upstream, it will break the downstream clang build in the merge
BUG=143931
Review URL: https://chromiumcodereview.appspot.com/10915241
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@156419 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/android')
-rw-r--r-- | tools/android/forwarder2/device_controller.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/android/forwarder2/device_controller.cc b/tools/android/forwarder2/device_controller.cc index e0effb8..3a2ceba 100644 --- a/tools/android/forwarder2/device_controller.cc +++ b/tools/android/forwarder2/device_controller.cc @@ -115,6 +115,8 @@ bool DeviceController::Start(const std::string& adb_unix_socket) { KillAllListeners(); CleanUpDeadListeners(); kickstart_adb_socket_.Close(); + + return true; } } // namespace forwarder |