OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef REMOTING_CLIENT_CLIENT_CONFIG_H_ | 5 #ifndef REMOTING_CLIENT_CLIENT_CONFIG_H_ |
6 #define REMOTING_CLIENT_CLIENT_CONFIG_H_ | 6 #define REMOTING_CLIENT_CLIENT_CONFIG_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 | 11 |
12 namespace remoting { | 12 namespace remoting { |
13 | 13 |
14 struct ClientConfig { | 14 struct ClientConfig { |
15 ClientConfig(); | 15 ClientConfig(); |
16 ~ClientConfig(); | 16 ~ClientConfig(); |
17 | 17 |
18 std::string host_jid; | 18 std::string host_jid; |
19 std::string username; | 19 std::string username; |
20 std::string auth_token; | 20 std::string auth_token; |
| 21 std::string auth_service; |
21 std::string nonce; | 22 std::string nonce; |
22 }; | 23 }; |
23 | 24 |
24 } // namespace remoting | 25 } // namespace remoting |
25 | 26 |
26 #endif // REMOTING_CLIENT_CLIENT_CONFIG_H_ | 27 #endif // REMOTING_CLIENT_CLIENT_CONFIG_H_ |
OLD | NEW |