1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef BASE_I18N_NUMBER_FORMATTING_H_ 6 #define BASE_I18N_NUMBER_FORMATTING_H_ 7 #pragma once 8 9 #include "base/basictypes.h" 10 #include "base/string16.h" 11 12 namespace base { 13 14 string16 FormatNumber(int64 number); 15 16 } // namespace base 17 18 #endif // BASE_I18N_NUMBER_FORMATTING_H_ 19