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

Unified 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/jni/connect_to_host_info.h
diff --git a/remoting/client/jni/connect_to_host_info.h b/remoting/client/jni/connect_to_host_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..f4dddffb0ed31edf1526509c26c9dd72cedf2c66
--- /dev/null
+++ b/remoting/client/jni/connect_to_host_info.h
@@ -0,0 +1,34 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CLIENT_JNI_CONNECT_TO_HOST_INFO_H_
+#define CLIENT_JNI_CONNECT_TO_HOST_INFO_H_
+
+#include <string>
+
+namespace remoting {
+
+struct ConnectToHostInfo {
+ ConnectToHostInfo();
+ ConnectToHostInfo(const ConnectToHostInfo& other);
+ ConnectToHostInfo(ConnectToHostInfo&& other);
+ ~ConnectToHostInfo();
+
+ std::string username;
+ std::string auth_token;
+ std::string host_jid;
+ std::string host_id;
+ std::string host_pubkey;
+ std::string pairing_id;
+ std::string pairing_secret;
+ std::string capabilities;
+ std::string flags;
+ std::string host_version;
+ std::string host_os;
+ std::string host_os_version;
+};
+
+} // namespace remoting
+
+#endif // CLIENT_JNI_CONNECT_TO_HOST_INFO_H_
« 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