Revert 168224 - Update V8 to version 3.15.4.
[chromium-blink-merge.git] / remoting / client / client_config.h
blobbf8474bd87e87058582cefe7da28b3791b9851ac
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef REMOTING_CLIENT_CLIENT_CONFIG_H_
6 #define REMOTING_CLIENT_CLIENT_CONFIG_H_
8 #include <string>
9 #include <vector>
11 #include "base/basictypes.h"
12 #include "remoting/protocol/authentication_method.h"
14 namespace remoting {
16 struct ClientConfig {
17 ClientConfig();
18 ~ClientConfig();
20 std::string local_jid;
22 std::string host_jid;
23 std::string host_public_key;
25 std::string shared_secret;
26 std::vector<protocol::AuthenticationMethod> authentication_methods;
27 std::string authentication_tag;
30 } // namespace remoting
32 #endif // REMOTING_CLIENT_CLIENT_CONFIG_H_