diff options
author | marshall@chromium.org <marshall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-09 15:57:47 +0000 |
---|---|---|
committer | marshall@chromium.org <marshall@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-05-09 15:57:47 +0000 |
commit | fb317a5d27a76cb0cc21c2eb8312fbfaabd811c6 (patch) | |
tree | fd0fe106112e04a0250ba7554d39d005d17e2e2c /ui/views/examples | |
parent | 91bea1dd2206ae7cd506eb4e40ba7445852d6cf7 (diff) | |
download | chromium_src-fb317a5d27a76cb0cc21c2eb8312fbfaabd811c6.zip chromium_src-fb317a5d27a76cb0cc21c2eb8312fbfaabd811c6.tar.gz chromium_src-fb317a5d27a76cb0cc21c2eb8312fbfaabd811c6.tar.bz2 |
Add new ResourceBundle::Delegate interface.
BUG=125351
TEST=ResourceBundle.*
Review URL: https://chromiumcodereview.appspot.com/10270023
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@136039 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/views/examples')
-rw-r--r-- | ui/views/examples/content_client/examples_main_delegate.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/views/examples/content_client/examples_main_delegate.cc b/ui/views/examples/content_client/examples_main_delegate.cc index c9c60ea..7f7d2e6 100644 --- a/ui/views/examples/content_client/examples_main_delegate.cc +++ b/ui/views/examples/content_client/examples_main_delegate.cc @@ -125,7 +125,7 @@ void ExamplesMainDelegate::InitializeShellContentClient( } void ExamplesMainDelegate::InitializeResourceBundle() { - ui::ResourceBundle::InitSharedInstanceWithLocale("en-US"); + ui::ResourceBundle::InitSharedInstanceWithLocale("en-US", NULL); } } // namespace examples |