diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 01:27:48 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 01:27:48 +0000 |
commit | dc12fef1b3d560bf860292454a945559968555de (patch) | |
tree | eb611281ab1f16462750e153eb7cd5eb06822417 /webkit/glue/plugins | |
parent | 83d0e2ba3c024eda4291c505300217e7ad8d7ba0 (diff) | |
download | chromium_src-dc12fef1b3d560bf860292454a945559968555de.zip chromium_src-dc12fef1b3d560bf860292454a945559968555de.tar.gz chromium_src-dc12fef1b3d560bf860292454a945559968555de.tar.bz2 |
So many reverts, I double-reverted. This is the triple-revert.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19330 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit/glue/plugins')
-rw-r--r-- | webkit/glue/plugins/webplugin_delegate_impl_mac.mm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/webkit/glue/plugins/webplugin_delegate_impl_mac.mm b/webkit/glue/plugins/webplugin_delegate_impl_mac.mm index 452410d..54bf43b 100644 --- a/webkit/glue/plugins/webplugin_delegate_impl_mac.mm +++ b/webkit/glue/plugins/webplugin_delegate_impl_mac.mm @@ -58,7 +58,7 @@ WebPluginDelegateImpl* g_current_plugin_instance = NULL; WebPluginDelegate* WebPluginDelegate::Create( const FilePath& filename, const std::string& mime_type, - gfx::PluginWindowHandle containing_view) { + gfx::NativeView containing_view) { scoped_refptr<NPAPI::PluginLib> plugin = NPAPI::PluginLib::CreatePluginLib(filename); if (plugin.get() == NULL) @@ -73,13 +73,12 @@ WebPluginDelegate* WebPluginDelegate::Create( return new WebPluginDelegateImpl(containing_view, instance.get()); } -bool WebPluginDelegateImpl::IsPluginDelegateWindow( - gfx::PluginNativeView window) { +bool WebPluginDelegateImpl::IsPluginDelegateWindow(gfx::NativeWindow window) { return false; } bool WebPluginDelegateImpl::GetPluginNameFromWindow( - gfx::PluginNativeView window, std::wstring *plugin_name) { + gfx::NativeWindow window, std::wstring *plugin_name) { if (NULL == plugin_name) { return false; } |