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

Unified Diff: base/i18n/utf8_validator_tables.h

Issue 1542323002: Switch to standard integer types in base/i18n/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: header 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 | « base/i18n/timezone.cc ('k') | base/i18n/utf8_validator_tables.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/i18n/utf8_validator_tables.h
diff --git a/base/i18n/utf8_validator_tables.h b/base/i18n/utf8_validator_tables.h
index b7db56e43e492698a53e855c461c2969ee91b195..939616b8045c52d19d89e5fabffb9265839b1473 100644
--- a/base/i18n/utf8_validator_tables.h
+++ b/base/i18n/utf8_validator_tables.h
@@ -5,7 +5,10 @@
#ifndef BASE_I18N_UTF8_VALIDATOR_TABLES_H_
#define BASE_I18N_UTF8_VALIDATOR_TABLES_H_
-#include "base/basictypes.h"
+#include <stddef.h>
+#include <stdint.h>
+
+#include "base/macros.h"
namespace base {
namespace internal {
@@ -14,7 +17,7 @@ namespace internal {
// next_state, next_state, ....). The right_shifts are used to reduce the
// overall size of the table. The table only covers bytes in the range
// [0x80, 0xFF] to save space.
-extern const uint8 kUtf8ValidatorTables[];
+extern const uint8_t kUtf8ValidatorTables[];
extern const size_t kUtf8ValidatorTablesSize;
« no previous file with comments | « base/i18n/timezone.cc ('k') | base/i18n/utf8_validator_tables.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698