Index: ios/third_party/blink/src/html_tokenizer_adapter.h |
diff --git a/ios/third_party/blink/src/html_tokenizer_adapter.h b/ios/third_party/blink/src/html_tokenizer_adapter.h |
index a16c5c09f3415dbd12740fac659cd02248b10aa3..6663caf44b9ac321ee56c388745a9d402c53efa0 100644 |
--- a/ios/third_party/blink/src/html_tokenizer_adapter.h |
+++ b/ios/third_party/blink/src/html_tokenizer_adapter.h |
@@ -5,8 +5,11 @@ |
#ifndef IOS_THIRD_PARTY_BLINK_SRC_TOKENIZER_ADAPTER_H_ |
#define IOS_THIRD_PARTY_BLINK_SRC_TOKENIZER_ADAPTER_H_ |
-#include "base/basictypes.h" |
+#include <stddef.h> |
+#include <stdint.h> |
+ |
#include "base/logging.h" |
+#include "base/macros.h" |
#define ALWAYS_INLINE inline __attribute__((always_inline)) |
@@ -23,8 +26,8 @@ |
#define notImplemented() |
namespace WebCore { |
-typedef uint16 UChar; |
-typedef uint8 LChar; |
+typedef uint16_t UChar; |
+typedef uint8_t LChar; |
template <typename CharType> |
inline bool isASCIIUpper(CharType c) { |