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

Unified Diff: net/websockets/websocket_test_util.h

Issue 1399303002: net/websockets: Convert int types from basictypes.h to the ones from stdint.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: websocket_deflate_stream.cc Created 5 years, 2 months 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/websockets/websocket_frame_test.cc ('k') | net/websockets/websocket_test_util.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/websockets/websocket_test_util.h
diff --git a/net/websockets/websocket_test_util.h b/net/websockets/websocket_test_util.h
index f620f18d6b48577d96de403b4212abd5740e1c62..c2fe1f96a074bc0d4fa580dee29ae75b1db0ef2c 100644
--- a/net/websockets/websocket_test_util.h
+++ b/net/websockets/websocket_test_util.h
@@ -5,6 +5,7 @@
#ifndef NET_WEBSOCKETS_WEBSOCKET_TEST_UTIL_H_
#define NET_WEBSOCKETS_WEBSOCKET_TEST_UTIL_H_
+#include <stdint.h>
#include <string>
#include "base/basictypes.h"
@@ -33,11 +34,11 @@ class URLRequestContext;
class LinearCongruentialGenerator {
public:
- explicit LinearCongruentialGenerator(uint32 seed);
- uint32 Generate();
+ explicit LinearCongruentialGenerator(uint32_t seed);
+ uint32_t Generate();
private:
- uint64 current_;
+ uint64_t current_;
};
// Generates a standard WebSocket handshake request. The challenge key used is
« no previous file with comments | « net/websockets/websocket_frame_test.cc ('k') | net/websockets/websocket_test_util.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698