Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1352)

Unified Diff: remoting/protocol/channel_socket_adapter_unittest.cc

Issue 1542203002: Switch to standard integer types in remoting/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@int-remoting-host
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « remoting/protocol/channel_socket_adapter.h ('k') | remoting/protocol/chromium_port_allocator.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 {
« no previous file with comments | « remoting/protocol/channel_socket_adapter.h ('k') | remoting/protocol/chromium_port_allocator.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698