| Index: remoting/protocol/channel_socket_adapter_unittest.cc
|
| diff --git a/remoting/protocol/channel_socket_adapter_unittest.cc b/remoting/protocol/channel_socket_adapter_unittest.cc
|
| index aa1efc6c8846e269750e94e56d33aa983e76fd73..3ecab7ee5e04420c2d723d57569a4f02091caa0c 100644
|
| --- a/remoting/protocol/channel_socket_adapter_unittest.cc
|
| +++ b/remoting/protocol/channel_socket_adapter_unittest.cc
|
| @@ -4,6 +4,9 @@
|
|
|
| #include "remoting/protocol/channel_socket_adapter.h"
|
|
|
| +#include <stddef.h>
|
| +#include <stdint.h>
|
| +
|
| #include "base/memory/ref_counted.h"
|
| #include "base/memory/scoped_ptr.h"
|
| #include "base/message_loop/message_loop.h"
|
| @@ -52,12 +55,13 @@ class MockTransportChannel : public cricket::TransportChannel {
|
| rtc::scoped_refptr<rtc::RTCCertificate>());
|
| MOCK_CONST_METHOD1(GetRemoteSSLCertificate,
|
| bool(rtc::SSLCertificate** cert));
|
| - MOCK_METHOD6(ExportKeyingMaterial, bool(const std::string& label,
|
| - const uint8* context,
|
| - size_t context_len,
|
| - bool use_context,
|
| - uint8* result,
|
| - size_t result_len));
|
| + MOCK_METHOD6(ExportKeyingMaterial,
|
| + bool(const std::string& label,
|
| + const uint8_t* context,
|
| + size_t context_len,
|
| + bool use_context,
|
| + uint8_t* result,
|
| + size_t result_len));
|
| };
|
|
|
| class TransportChannelSocketAdapterTest : public testing::Test {
|
|
|