summaryrefslogtreecommitdiffstats
path: root/base/i18n/icu_util.h
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-23 00:39:09 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-08-23 00:39:09 +0000
commitd7477f0b2741496cf920ada77781c09d29201208 (patch)
tree464f633951a6f84e8cda1301fe3b7558c719a61e /base/i18n/icu_util.h
parentac1128e3801134c30a848eed0db7298826f8449b (diff)
downloadchromium_src-d7477f0b2741496cf920ada77781c09d29201208.zip
chromium_src-d7477f0b2741496cf920ada77781c09d29201208.tar.gz
chromium_src-d7477f0b2741496cf920ada77781c09d29201208.tar.bz2
base: Minor cleanups in icu_util.h
- Move it into base::i18n namespace. That is the namespace that should be used there. - Consequently, rename the function to InitializeICU(). R=brettw@chromium.org TBR=ben,thestig,jam Review URL: https://chromiumcodereview.appspot.com/22875025 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@219164 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/i18n/icu_util.h')
-rw-r--r--base/i18n/icu_util.h8
1 files changed, 5 insertions, 3 deletions
diff --git a/base/i18n/icu_util.h b/base/i18n/icu_util.h
index f6356f1..ef5dede 100644
--- a/base/i18n/icu_util.h
+++ b/base/i18n/icu_util.h
@@ -7,12 +7,14 @@
#include "base/i18n/base_i18n_export.h"
-namespace icu_util {
+namespace base {
+namespace i18n {
// Call this function to load ICU's data tables for the current process. This
// function should be called before ICU is used.
-BASE_I18N_EXPORT bool Initialize();
+BASE_I18N_EXPORT bool InitializeICU();
-} // namespace icu_util
+} // namespace i18n
+} // namespace base
#endif // BASE_I18N_ICU_UTIL_H_