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

Unified Diff: net/quic/p2p/quic_p2p_session_test.cc

Issue 1535363003: Switch to standard integer types in net/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: stddef 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 | « net/quic/p2p/quic_p2p_session.h ('k') | net/quic/p2p/quic_p2p_stream.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/quic/p2p/quic_p2p_session_test.cc
diff --git a/net/quic/p2p/quic_p2p_session_test.cc b/net/quic/p2p/quic_p2p_session_test.cc
index c70961d96b87216db6ba191ce7698c07dd53a6c8..3c029ea582d4e2abeeb457ae4230e61d456cc547 100644
--- a/net/quic/p2p/quic_p2p_session_test.cc
+++ b/net/quic/p2p/quic_p2p_session_test.cc
@@ -6,6 +6,7 @@
#include "base/callback_helpers.h"
#include "base/location.h"
+#include "base/macros.h"
#include "base/memory/weak_ptr.h"
#include "base/run_loop.h"
#include "base/single_thread_task_runner.h"
@@ -102,11 +103,11 @@ class FakeP2PDatagramSocket : public Socket {
return buf_len;
}
- int SetReceiveBufferSize(int32 size) override {
+ int SetReceiveBufferSize(int32_t size) override {
NOTIMPLEMENTED();
return ERR_NOT_IMPLEMENTED;
}
- int SetSendBufferSize(int32 size) override {
+ int SetSendBufferSize(int32_t size) override {
NOTIMPLEMENTED();
return ERR_NOT_IMPLEMENTED;
}
« no previous file with comments | « net/quic/p2p/quic_p2p_session.h ('k') | net/quic/p2p/quic_p2p_stream.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698