OLD | NEW |
---|---|
(Empty) | |
1 // Copyright (c) 2010 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. | |
4 | |
5 #ifndef CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_ | |
6 #define CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_ | |
7 | |
8 #include <string> | |
9 | |
10 namespace remoting { | |
11 | |
12 // This struct is used for ServiceHostMsg_ChromotingHost_Info IPC message. | |
13 struct ChromotingHostInfo { | |
14 std::string host_id; | |
15 std::string hostname; | |
16 std::string public_key; | |
17 bool enabled; | |
18 std::string email; | |
Alpha Left Google
2010/12/16 21:32:44
email first then enabled?
Sergey Ulanov
2010/12/17 00:05:43
Done, but I don't think this makes any difference
| |
19 }; | |
20 | |
21 } // namespace remoting | |
22 | |
23 #endif // CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_ | |
OLD | NEW |