summaryrefslogtreecommitdiffstats
path: root/remoting/base/protocol_decoder_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'remoting/base/protocol_decoder_unittest.cc')
-rw-r--r--remoting/base/protocol_decoder_unittest.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/remoting/base/protocol_decoder_unittest.cc b/remoting/base/protocol_decoder_unittest.cc
index c2473a8..da13a0d 100644
--- a/remoting/base/protocol_decoder_unittest.cc
+++ b/remoting/base/protocol_decoder_unittest.cc
@@ -16,7 +16,7 @@ static const int kWidth = 640;
static const int kHeight = 480;
static const std::string kTestData = "Chromoting rockz";
-static void AppendMessage(const HostMessage& msg,
+static void AppendMessage(const ChromotingHostMessage& msg,
std::string* buffer) {
// Contains one encoded message.
scoped_refptr<media::DataBuffer> encoded_msg;
@@ -31,7 +31,7 @@ static void PrepareData(uint8** buffer, int* size) {
std::string encoded_data;
// The first message is InitClient.
- HostMessage msg;
+ ChromotingHostMessage msg;
msg.mutable_init_client()->set_width(kWidth);
msg.mutable_init_client()->set_height(kHeight);
AppendMessage(msg, &encoded_data);