| Index: base/i18n/number_formatting.cc
|
| diff --git a/base/i18n/number_formatting.cc b/base/i18n/number_formatting.cc
|
| index 47aa14cab23bc75fa42d8e9b00d85a4af361649d..920ba96b5732c9811e7fcb356d7f488d5777ca7a 100644
|
| --- a/base/i18n/number_formatting.cc
|
| +++ b/base/i18n/number_formatting.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "base/i18n/number_formatting.h"
|
|
|
| +#include <stddef.h>
|
| +
|
| #include "base/format_macros.h"
|
| #include "base/lazy_instance.h"
|
| #include "base/logging.h"
|
| @@ -45,7 +47,7 @@ LazyInstance<NumberFormatWrapper> g_number_format_float =
|
|
|
| } // namespace
|
|
|
| -string16 FormatNumber(int64 number) {
|
| +string16 FormatNumber(int64_t number) {
|
| icu::NumberFormat* number_format =
|
| g_number_format_int.Get().number_format.get();
|
|
|
|
|