diff options
Diffstat (limited to 'adb/commandline.h')
-rw-r--r-- | adb/commandline.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/adb/commandline.h b/adb/commandline.h index 9ba69a396..36cd79841 100644 --- a/adb/commandline.h +++ b/adb/commandline.h @@ -91,8 +91,8 @@ int adb_commandline(int argc, const char** argv); // Connects to the device "shell" service with |command| and prints the // resulting output. // if |callback| is non-null, stdout/stderr output will be handled by it. -int send_shell_command(TransportType transport_type, const char* serial, const std::string& command, - bool disable_shell_protocol, StandardStreamsCallbackInterface* callback = - &DEFAULT_STANDARD_STREAMS_CALLBACK); +int send_shell_command( + const std::string& command, bool disable_shell_protocol, + StandardStreamsCallbackInterface* callback = &DEFAULT_STANDARD_STREAMS_CALLBACK); #endif // COMMANDLINE_H |