| 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
|
|
|