Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(67)

Side by Side Diff: chrome/common/remoting/chromoting_host_info.h

Issue 6366019: Part 1 of repairing regressions to my old clang check plugins so Nico can (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove Nico's changes that I patched in for testing. Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 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 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 CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_ 5 #ifndef CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_
6 #define CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_ 6 #define CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 namespace remoting { 10 namespace remoting {
11 11
12 // This struct is used for ServiceHostMsg_ChromotingHost_Info IPC message. 12 // This struct is used for ServiceHostMsg_ChromotingHost_Info IPC message.
13 struct ChromotingHostInfo { 13 struct ChromotingHostInfo {
14 ChromotingHostInfo();
15 ~ChromotingHostInfo();
16
14 std::string host_id; 17 std::string host_id;
15 std::string hostname; 18 std::string hostname;
16 std::string public_key; 19 std::string public_key;
17 std::string login; 20 std::string login;
18 bool enabled; 21 bool enabled;
19 }; 22 };
20 23
21 } // namespace remoting 24 } // namespace remoting
22 25
23 #endif // CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_ 26 #endif // CHROME_COMMON_REMOTING_CHROMOTING_HOST_INFO_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698