diff options
Diffstat (limited to 'chrome/common/common_glue.cc')
-rw-r--r-- | chrome/common/common_glue.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/common/common_glue.cc b/chrome/common/common_glue.cc index 30b1e4f..6c33f1e 100644 --- a/chrome/common/common_glue.cc +++ b/chrome/common/common_glue.cc @@ -6,7 +6,7 @@ #include "base/path_service.h" #include "chrome/common/chrome_paths.h" #include "chrome/common/chrome_switches.h" -#include "chrome/common/resource_bundle.h" +#include "chrome/common/l10n_util.h" #include "chrome/plugin/npobject_util.h" #include "googleurl/src/url_util.h" #include "webkit/glue/webkit_glue.h" @@ -39,7 +39,7 @@ std::wstring GetWebKitLocale() { } std::wstring GetLocalizedString(int message_id) { - return ResourceBundle::GetSharedInstance().GetLocalizedString(message_id); + return l10n_util::GetString(message_id); } } // namespace webkit_glue |