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

Side by Side Diff: remoting/client/connect_to_host_info.h

Issue 2753963002: Refactoring and rewriting the chromoting jni instance to be chromoting session. (Closed)
Patch Set: Updating based on feedback. Created 3 years, 8 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 unified diff | Download patch
« no previous file with comments | « remoting/client/client_telemetry_logger.cc ('k') | remoting/client/connect_to_host_info.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CLIENT_JNI_CONNECT_TO_HOST_INFO_H_ 5 #ifndef REMOTING_CLIENT_CONNECT_TO_HOST_INFO_H_
6 #define CLIENT_JNI_CONNECT_TO_HOST_INFO_H_ 6 #define REMOTING_CLIENT_CONNECT_TO_HOST_INFO_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace remoting { 10 namespace remoting {
11 11
12 struct ConnectToHostInfo { 12 struct ConnectToHostInfo {
13 ConnectToHostInfo(); 13 ConnectToHostInfo();
14 ConnectToHostInfo(const ConnectToHostInfo& other); 14 ConnectToHostInfo(const ConnectToHostInfo& other);
15 ConnectToHostInfo(ConnectToHostInfo&& other); 15 ConnectToHostInfo(ConnectToHostInfo&& other);
16 ~ConnectToHostInfo(); 16 ~ConnectToHostInfo();
17 17
18 std::string username; 18 std::string username;
19 std::string auth_token; 19 std::string auth_token;
20 std::string host_jid; 20 std::string host_jid;
21 std::string host_id; 21 std::string host_id;
22 std::string host_pubkey; 22 std::string host_pubkey;
23 std::string pairing_id; 23 std::string pairing_id;
24 std::string pairing_secret; 24 std::string pairing_secret;
25 std::string capabilities; 25 std::string capabilities;
26 std::string flags; 26 std::string flags;
27 std::string host_version; 27 std::string host_version;
28 std::string host_os; 28 std::string host_os;
29 std::string host_os_version; 29 std::string host_os_version;
30 }; 30 };
31 31
32 } // namespace remoting 32 } // namespace remoting
33 33
34 #endif // CLIENT_JNI_CONNECT_TO_HOST_INFO_H_ 34 #endif // REMOTING_CLIENT_CONNECT_TO_HOST_INFO_H_
OLDNEW
« no previous file with comments | « remoting/client/client_telemetry_logger.cc ('k') | remoting/client/connect_to_host_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698