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

Unified Diff: remoting/test/connection_setup_info.h

Issue 1237093004: Support for connecting to localhost on the chromoting test driver. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Cleaned up ConnectionSetupInfo, comments, and merge changes. Created 5 years, 5 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
Index: remoting/test/connection_setup_info.h
diff --git a/remoting/test/connection_setup_info.h b/remoting/test/connection_setup_info.h
new file mode 100644
index 0000000000000000000000000000000000000000..0c9a9e1977e0789d567e9a8741483a0894a7cb95
--- /dev/null
+++ b/remoting/test/connection_setup_info.h
@@ -0,0 +1,46 @@
+// Copyright 2015 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 REMOTING_TEST_CONNECTION_SETUP_INFO_H_
+#define REMOTING_TEST_CONNECTION_SETUP_INFO_H_
+
+#include <string>
+#include <vector>
+
+#include "remoting/protocol/authentication_method.h"
+
+namespace remoting {
+namespace test {
+
+// Holds the information needed to establish a connection with a remote host.
Sergey Ulanov 2015/07/16 23:42:10 Also mention that it's used to pass parameters to
tonychun 2015/07/17 16:25:49 Done.
+struct ConnectionSetupInfo {
+ ConnectionSetupInfo();
+ ~ConnectionSetupInfo();
+
+ // User provided information.
+ std::string access_token;
+ std::string user_name;
+ std::string pin;
+
+ // Chromoting host information.
+ std::string host_name;
+ std::string offline_reason;
+ std::string public_key;
+
+ // App Remoting information.
+ std::string authorization_code;
+ std::string shared_secret;
+
+ // Chromoting host information.
+ std::vector<protocol::AuthenticationMethod> auth_methods;
+ std::string capabilities;
+ std::string host_id;
+ std::string host_jid;
+ std::string pairing_id;
+};
+
+} // namespace test
+} // namespace remoting
+
+#endif // REMOTING_TEST_CONNECTION_SETUP_INFO_H_

Powered by Google App Engine
This is Rietveld 408576698