| Index: ui/base/resource/resource_bundle_linux.cc
|
| diff --git a/ui/base/resource/resource_bundle_linux.cc b/ui/base/resource/resource_bundle_linux.cc
|
| index 0ea8b0d235f63ae983502e646be45558394acc4d..d1eb65486f6aadce6ad7312958855a48ed489c22 100644
|
| --- a/ui/base/resource/resource_bundle_linux.cc
|
| +++ b/ui/base/resource/resource_bundle_linux.cc
|
| @@ -71,6 +71,20 @@ FilePath ResourceBundle::GetLargeIconResourcesFilePath() {
|
| return FilePath();
|
| }
|
|
|
| +// static
|
| +FilePath ResourceBundle::GetLocaleFilePath(const std::string& app_locale) {
|
| + FilePath locale_file_path;
|
| + PathService::Get(ui::DIR_LOCALES, &locale_file_path);
|
| + if (locale_file_path.empty())
|
| + return locale_file_path;
|
| + if (app_locale.empty())
|
| + return FilePath();
|
| + locale_file_path = locale_file_path.AppendASCII(app_locale + ".pak");
|
| + if (!file_util::PathExists(locale_file_path))
|
| + return FilePath();
|
| + return locale_file_path;
|
| +}
|
| +
|
| gfx::Image& ResourceBundle::GetNativeImageNamed(int resource_id) {
|
| return *GetPixbufImpl(resource_id, false);
|
| }
|
|
|