diff options
author | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 16:32:59 +0000 |
---|---|---|
committer | rsesek@chromium.org <rsesek@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-21 16:32:59 +0000 |
commit | 2953b506591d6f4a52e443831d43c0a996b7819a (patch) | |
tree | 2566f8d00bec266b854d2f132ad7189e50aec855 /chrome/default_plugin | |
parent | 985454a327e5907caf0d5f32ed37de9f6f2abda4 (diff) | |
download | chromium_src-2953b506591d6f4a52e443831d43c0a996b7819a.zip chromium_src-2953b506591d6f4a52e443831d43c0a996b7819a.tar.gz chromium_src-2953b506591d6f4a52e443831d43c0a996b7819a.tar.bz2 |
Move all ResourceBundle::GetNSImageNamed() calls to GetNativeImageNamed().
This is part of the first stage of cleaning up ResourceBundle's interface.
BUG=58030
TEST=Compile and unit tests.
Review URL: http://codereview.chromium.org/3806007
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63367 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/default_plugin')
-rw-r--r-- | chrome/default_plugin/plugin_impl_mac.mm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/default_plugin/plugin_impl_mac.mm b/chrome/default_plugin/plugin_impl_mac.mm index c7ca755..0bad41b 100644 --- a/chrome/default_plugin/plugin_impl_mac.mm +++ b/chrome/default_plugin/plugin_impl_mac.mm @@ -51,7 +51,7 @@ bool PluginInstallerImpl::Initialize(void* module_handle, NPP instance, IDS_DEFAULT_PLUGIN_NO_PLUGIN_AVAILABLE_MSG)) retain]; ResourceBundle& rb = ResourceBundle::GetSharedInstance(); - image_ = [rb.GetNSImageNamed(IDR_PLUGIN_ICON) retain]; + image_ = [rb.GetNativeImageNamed(IDR_PLUGIN_ICON) retain]; return true; } |