Support for connecting to localhost on the chromoting test driver.
Completed connection to localhost. I've added a new StartConnection method in TestChromotingClient which reuses almost all of the code provided to create a chromoting connection. In addition, I've added a new parameter called "client-pin", which will allow for the user to pass in a PIN to authenticate the connection.
BUG=
Review URL: https://codereview.chromium.org/1237093004
Cr-Commit-Position: refs/heads/master@{#339504}
diff --git a/remoting/test/connection_setup_info.h b/remoting/test/connection_setup_info.h
new file mode 100644
index 0000000..0c9a9e19
--- /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.
+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_