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

Unified Diff: ios/third_party/blink/src/html_tokenizer_adapter.h

Issue 1544743002: Switch to standard integer types in ios/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: 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 | « ios/third_party/blink/src/html_token.mm ('k') | ios/web/app/web_main_loop.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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) {
« no previous file with comments | « ios/third_party/blink/src/html_token.mm ('k') | ios/web/app/web_main_loop.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698