diff options
Diffstat (limited to 'remoting')
-rw-r--r-- | remoting/client/client_util.h | 2 | ||||
-rw-r--r-- | remoting/client/host_connection.h | 2 | ||||
-rw-r--r-- | remoting/client/jingle_host_connection.h | 3 |
3 files changed, 4 insertions, 3 deletions
diff --git a/remoting/client/client_util.h b/remoting/client/client_util.h index 9aa1474..8cad1d5 100644 --- a/remoting/client/client_util.h +++ b/remoting/client/client_util.h @@ -9,7 +9,7 @@ namespace remoting { -class ClientConfig; +struct ClientConfig; // Get the login info from the cmdline args (or request from the console if // not present) and write values into |config|. diff --git a/remoting/client/host_connection.h b/remoting/client/host_connection.h index 105cad3..8438fb9 100644 --- a/remoting/client/host_connection.h +++ b/remoting/client/host_connection.h @@ -11,7 +11,7 @@ namespace remoting { -class ClientConfig; +struct ClientConfig; class HostConnection { public: diff --git a/remoting/client/jingle_host_connection.h b/remoting/client/jingle_host_connection.h index c56c0df..7039a2b 100644 --- a/remoting/client/jingle_host_connection.h +++ b/remoting/client/jingle_host_connection.h @@ -31,9 +31,10 @@ class MessageLoop; namespace remoting { -class ClientConfig; class JingleThread; +struct ClientConfig; + class JingleHostConnection : public HostConnection, public JingleChannel::Callback, public JingleClient::Callback { |