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

Unified Diff: net/http/md4.h

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/http_version.h ('k') | net/http/md4.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/http/md4.h
diff --git a/net/http/md4.h b/net/http/md4.h
index b416e261de0c1022a843b222ad388a22ac5fe637..0b74df5430d417c060af6c8fe6e7ff4d42937b56 100644
--- a/net/http/md4.h
+++ b/net/http/md4.h
@@ -44,7 +44,7 @@
#ifndef NET_HTTP_MD4_H_
#define NET_HTTP_MD4_H_
-#include "base/basictypes.h"
+#include <stdint.h>
namespace net {
namespace weak_crypto {
@@ -66,7 +66,7 @@ namespace weak_crypto {
* interface would make more sense if that were a requirement. Currently, this
* is good enough for the applications we care about.
*/
-void MD4Sum(const uint8 *input, uint32 inputLen, uint8 *result);
+void MD4Sum(const uint8_t* input, uint32_t inputLen, uint8_t* result);
} // namespace net::weak_crypto
} // namespace net
« no previous file with comments | « net/http/http_version.h ('k') | net/http/md4.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698