diff options
Diffstat (limited to 'lldb/source/Plugins/Platform/Android/AdbClient.h')
-rw-r--r-- | lldb/source/Plugins/Platform/Android/AdbClient.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lldb/source/Plugins/Platform/Android/AdbClient.h b/lldb/source/Plugins/Platform/Android/AdbClient.h index f1d72aae8b8..169a0b5a4e3 100644 --- a/lldb/source/Plugins/Platform/Android/AdbClient.h +++ b/lldb/source/Plugins/Platform/Android/AdbClient.h @@ -94,9 +94,10 @@ public: Error DeletePortForwarding(const uint16_t local_port); - Error Shell(const char *command, uint32_t timeout_ms, std::string *output); + Error Shell(const char *command, std::chrono::milliseconds timeout, + std::string *output); - Error ShellToFile(const char *command, uint32_t timeout_ms, + Error ShellToFile(const char *command, std::chrono::milliseconds timeout, const FileSpec &output_file_spec); std::unique_ptr<SyncService> GetSyncService(Error &error); |