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

Unified Diff: base/i18n/number_formatting.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/message_formatter.h ('k') | base/i18n/number_formatting.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/i18n/number_formatting.h
diff --git a/base/i18n/number_formatting.h b/base/i18n/number_formatting.h
index 556f9c24d2dd655740f75f58a2ae48adb4b25116..bdb862f21a67754481cebec79b87a044dbb21be5 100644
--- a/base/i18n/number_formatting.h
+++ b/base/i18n/number_formatting.h
@@ -5,7 +5,8 @@
#ifndef BASE_I18N_NUMBER_FORMATTING_H_
#define BASE_I18N_NUMBER_FORMATTING_H_
-#include "base/basictypes.h"
+#include <stdint.h>
+
#include "base/i18n/base_i18n_export.h"
#include "base/strings/string16.h"
@@ -14,7 +15,7 @@ namespace base {
// Return a number formatted with separators in the user's locale.
// Ex: FormatNumber(1234567)
// => "1,234,567" in English, "1.234.567" in German
-BASE_I18N_EXPORT string16 FormatNumber(int64 number);
+BASE_I18N_EXPORT string16 FormatNumber(int64_t number);
// Return a number formatted with separators in the user's locale.
// Ex: FormatDouble(1234567.8, 1)
« no previous file with comments | « base/i18n/message_formatter.h ('k') | base/i18n/number_formatting.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698