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

Unified Diff: net/http/md4.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/http/md4.h ('k') | net/http/mock_sspi_library_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/md4.cc
diff --git a/net/http/md4.cc b/net/http/md4.cc
index da1e8d3b202a9cc2493c52b4251f89e6a30aa035..7de9cb0b64eb480dc458327a7d5140fec729d98e 100644
--- a/net/http/md4.cc
+++ b/net/http/md4.cc
@@ -49,8 +49,8 @@
#include <string.h>
-typedef uint32 Uint32;
-typedef uint8 Uint8;
+typedef uint32_t Uint32;
+typedef uint8_t Uint8;
/* the "conditional" function */
#define F(x,y,z) (((x) & (y)) | (~(x) & (z)))
« no previous file with comments | « net/http/md4.h ('k') | net/http/mock_sspi_library_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698