From fb895c694e2117c29b6afb699095f6e187a44da7 Mon Sep 17 00:00:00 2001 From: "brettw@chromium.org" <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> Date: Fri, 9 Oct 2009 18:20:30 +0000 Subject: Move more ICU-dependent stuff from base into base/i18n. Some test stuff also depended on this, so to make the DEPS work out, I made a new base/test directory where I moved the testing-related files into a new directory base/test. TEST=none BUG=none Review URL: http://codereview.chromium.org/266038 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@28569 0039d316-1c4b-4281-b951-d872f2087c98 --- base/i18n/icu_util.h | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 base/i18n/icu_util.h (limited to 'base/i18n/icu_util.h') diff --git a/base/i18n/icu_util.h b/base/i18n/icu_util.h new file mode 100644 index 0000000..56eaa37 --- /dev/null +++ b/base/i18n/icu_util.h @@ -0,0 +1,16 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#ifndef BASE_I18N_ICU_UTIL_H_ +#define BASE_I18N_ICU_UTIL_H_ + +namespace icu_util { + +// Call this function to load ICU's data tables for the current process. This +// function should be called before ICU is used. +bool Initialize(); + +} // namespace icu_util + +#endif // BASE_I18N_ICU_UTIL_H_ -- cgit v1.1