| OLD | NEW |
| (Empty) |
| 1 // Copyright 2017 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef CLIENT_JNI_CONNECT_TO_HOST_INFO_H_ | |
| 6 #define CLIENT_JNI_CONNECT_TO_HOST_INFO_H_ | |
| 7 | |
| 8 #include <string> | |
| 9 | |
| 10 namespace remoting { | |
| 11 | |
| 12 struct ConnectToHostInfo { | |
| 13 ConnectToHostInfo(); | |
| 14 ConnectToHostInfo(const ConnectToHostInfo& other); | |
| 15 ConnectToHostInfo(ConnectToHostInfo&& other); | |
| 16 ~ConnectToHostInfo(); | |
| 17 | |
| 18 std::string username; | |
| 19 std::string auth_token; | |
| 20 std::string host_jid; | |
| 21 std::string host_id; | |
| 22 std::string host_pubkey; | |
| 23 std::string pairing_id; | |
| 24 std::string pairing_secret; | |
| 25 std::string capabilities; | |
| 26 std::string flags; | |
| 27 std::string host_version; | |
| 28 std::string host_os; | |
| 29 std::string host_os_version; | |
| 30 }; | |
| 31 | |
| 32 } // namespace remoting | |
| 33 | |
| 34 #endif // CLIENT_JNI_CONNECT_TO_HOST_INFO_H_ | |
| OLD | NEW |