diff options
author | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 00:41:42 +0000 |
---|---|---|
committer | evan@chromium.org <evan@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-06-26 00:41:42 +0000 |
commit | d02bfcc48337bc28193a68fdd4f1343282096812 (patch) | |
tree | f6903db71e2869cd881dcd603fce8d4a0974aa6b /webkit | |
parent | e1645210943f1e0597bd9adaf868e6fde80db605 (diff) | |
download | chromium_src-d02bfcc48337bc28193a68fdd4f1343282096812.zip chromium_src-d02bfcc48337bc28193a68fdd4f1343282096812.tar.gz chromium_src-d02bfcc48337bc28193a68fdd4f1343282096812.tar.bz2 |
mac: build fix.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19322 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'webkit')
-rw-r--r-- | webkit/glue/plugins/webplugin_delegate_impl_mac.mm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/webkit/glue/plugins/webplugin_delegate_impl_mac.mm b/webkit/glue/plugins/webplugin_delegate_impl_mac.mm index 54bf43b..452410d 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::NativeView containing_view) { + gfx::PluginWindowHandle containing_view) { scoped_refptr<NPAPI::PluginLib> plugin = NPAPI::PluginLib::CreatePluginLib(filename); if (plugin.get() == NULL) @@ -73,12 +73,13 @@ WebPluginDelegate* WebPluginDelegate::Create( return new WebPluginDelegateImpl(containing_view, instance.get()); } -bool WebPluginDelegateImpl::IsPluginDelegateWindow(gfx::NativeWindow window) { +bool WebPluginDelegateImpl::IsPluginDelegateWindow( + gfx::PluginNativeView window) { return false; } bool WebPluginDelegateImpl::GetPluginNameFromWindow( - gfx::NativeWindow window, std::wstring *plugin_name) { + gfx::PluginNativeView window, std::wstring *plugin_name) { if (NULL == plugin_name) { return false; } |