| Index: remoting/client/chromoting_client.h
|
| diff --git a/remoting/client/chromoting_client.h b/remoting/client/chromoting_client.h
|
| index 74fa35dd55d4a042b42d437919b9ee18afc19f18..e476f318de135230ad35111b3fd947823ab22f29 100644
|
| --- a/remoting/client/chromoting_client.h
|
| +++ b/remoting/client/chromoting_client.h
|
| @@ -7,11 +7,12 @@
|
| #ifndef REMOTING_CLIENT_CHROMOTING_CLIENT_H
|
| #define REMOTING_CLIENT_CHROMOTING_CLIENT_H
|
|
|
| +#include <list>
|
| +
|
| #include "base/task.h"
|
| #include "remoting/client/host_connection.h"
|
| #include "remoting/client/client_config.h"
|
| #include "remoting/client/chromoting_view.h"
|
| -#include "remoting/protocol/messages_decoder.h"
|
|
|
| class MessageLoop;
|
|
|
| @@ -89,7 +90,7 @@ class ChromotingClient : public HostConnection::HostEventCallback {
|
| // processed.
|
| //
|
| // Used to serialize sending of messages to the client.
|
| - HostMessageList received_messages_;
|
| + std::list<ChromotingHostMessage*> received_messages_;
|
|
|
| // True if a message is being processed. Can be used to determine if it is
|
| // safe to dispatch another message.
|
|
|