diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 21:33:53 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-07-27 21:33:53 +0000 |
commit | 37478a74d8d946fbf244eb972fdd42c960e165e5 (patch) | |
tree | 81f3b0f0fbd4eb26e46ee111f6cbde41ea0344f8 | |
parent | 1c085a63a3d62c0bf5043a8336dce0e9923917f8 (diff) | |
download | chromium_src-37478a74d8d946fbf244eb972fdd42c960e165e5.zip chromium_src-37478a74d8d946fbf244eb972fdd42c960e165e5.tar.gz chromium_src-37478a74d8d946fbf244eb972fdd42c960e165e5.tar.bz2 |
Fix class -> struct.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@53852 0039d316-1c4b-4281-b951-d872f2087c98
-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 { |