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

Unified Diff: third_party/libaddressinput/chromium/canonicalize_string.cc

Issue 1548233002: Switch to standard integer types in third_party/libaddressinput/chromium/. (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
Index: third_party/libaddressinput/chromium/canonicalize_string.cc
diff --git a/third_party/libaddressinput/chromium/canonicalize_string.cc b/third_party/libaddressinput/chromium/canonicalize_string.cc
index e6d3e4e44ec66b7ae018cca3a73510c45848b055..d1fc1ce10aade45be456556d7bc00fd08740acca 100644
--- a/third_party/libaddressinput/chromium/canonicalize_string.cc
+++ b/third_party/libaddressinput/chromium/canonicalize_string.cc
@@ -4,7 +4,10 @@
#include "third_party/libaddressinput/src/cpp/src/util/canonicalize_string.h"
+#include <stdint.h>
+
#include "base/logging.h"
+#include "base/macros.h"
#include "third_party/icu/source/common/unicode/errorcode.h"
#include "third_party/icu/source/common/unicode/locid.h"
#include "third_party/icu/source/common/unicode/unistr.h"

Powered by Google App Engine
This is Rietveld 408576698