Index: remoting/client/client_util.h |
diff --git a/remoting/client/client_util.h b/remoting/client/client_util.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..4c2902ecfc1a355a91f2786e669354ace3af9539 |
--- /dev/null |
+++ b/remoting/client/client_util.h |
@@ -0,0 +1,19 @@ |
+// Copyright (c) 2010 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_CLIENT_CLIENT_UTIL_H_ |
+#define REMOTING_CLIENT_CLIENT_UTIL_H_ |
+ |
+#include <string> |
+ |
+namespace remoting { |
+ |
+// Get the login info from the console and writes into |host_jid|, |username| |
+// and |password|. Return true if successful. |
+bool GetLoginInfo(std::string& host_jid, std::string& username, |
+ std::string& password); |
+ |
+} // namespace remoting |
+ |
+#endif // REMOTING_CLIENT_CLIENT_UTIL_H_ |