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

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

Issue 2643483003: [Remoting Android] Refactor ClientTelemetryLogger (Closed)
Patch Set: PTAL Created 3 years, 11 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
OLDNEW
(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_
OLDNEW
« no previous file with comments | « remoting/client/jni/chromoting_jni_runtime.cc ('k') | remoting/client/jni/connect_to_host_info.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698