| Index: remoting/base/compound_buffer_unittest.cc
|
| diff --git a/remoting/base/compound_buffer_unittest.cc b/remoting/base/compound_buffer_unittest.cc
|
| index e5f4bef381463a6aa972a12134e01bcc94ad961d..031365a85d9c02ae7a61b7ac15171eee90c0b6d5 100644
|
| --- a/remoting/base/compound_buffer_unittest.cc
|
| +++ b/remoting/base/compound_buffer_unittest.cc
|
| @@ -2,6 +2,9 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include <string>
|
|
|
| #include "base/bind.h"
|
| @@ -108,7 +111,7 @@ class CompoundBufferTest : public testing::Test {
|
|
|
| static size_t ReadFromInput(CompoundBufferInputStream* input,
|
| void* data, size_t size) {
|
| - uint8* out = reinterpret_cast<uint8*>(data);
|
| + uint8_t* out = reinterpret_cast<uint8_t*>(data);
|
| int out_size = size;
|
|
|
| const void* in;
|
|
|