diff options
author | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-23 06:27:30 +0000 |
---|---|---|
committer | ananta@chromium.org <ananta@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-06-23 06:27:30 +0000 |
commit | 1eb70a2fec054f272adfb991801caf29f53edbe1 (patch) | |
tree | 4e1425f5b69f50b4ca878463da0a1b47dea75de0 /content/plugin/webplugin_proxy.cc | |
parent | fa436970b87076df3de5479e1abf071af13c9bcf (diff) | |
download | chromium_src-1eb70a2fec054f272adfb991801caf29f53edbe1.zip chromium_src-1eb70a2fec054f272adfb991801caf29f53edbe1.tar.gz chromium_src-1eb70a2fec054f272adfb991801caf29f53edbe1.tar.bz2 |
Revert 89221 - Reverting this to see if the Flash crashes on Mac canary are due to this CL.
Revert 88773 - Don't retain NPNVWindowNPObject and NPNVPluginElementNPObject twice
Both NPN_GetValue and WebPluginProxy take a reference on access, with
the latter conflating the caller's reference and its internal reference.
To be consistent with WebPluginImpl, let WebPluginProxy only manage its
internal reference and leave the plugin's reference to NPN_GetValue.
Document this in the WebPlugin interface.
Also release plugin-side proxies when WebPluginProxy is destroyed.
R=ananta
BUG=86124
TEST=none
Review URL: http://codereview.chromium.org/6693052
TBR=davidben@chromium.org
Review URL: http://codereview.chromium.org/7171021
TBR=ananta@chromium.org
Review URL: http://codereview.chromium.org/7239010
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@90170 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/plugin/webplugin_proxy.cc')
-rw-r--r-- | content/plugin/webplugin_proxy.cc | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/content/plugin/webplugin_proxy.cc b/content/plugin/webplugin_proxy.cc index 7c3025c..84d6d0d 100644 --- a/content/plugin/webplugin_proxy.cc +++ b/content/plugin/webplugin_proxy.cc @@ -94,6 +94,11 @@ WebPluginProxy::~WebPluginProxy() { if (accelerated_surface_.get()) accelerated_surface_.reset(); #endif + + if (plugin_element_) + WebBindings::releaseObject(plugin_element_); + if (window_npobject_) + WebBindings::releaseObject(window_npobject_); } bool WebPluginProxy::Send(IPC::Message* msg) { @@ -196,7 +201,7 @@ void WebPluginProxy::InvalidateRect(const gfx::Rect& rect) { NPObject* WebPluginProxy::GetWindowScriptNPObject() { if (window_npobject_) - return WebBindings::retainObject(window_npobject_); + return window_npobject_; int npobject_route_id = channel_->GenerateRouteID(); bool success = false; @@ -213,7 +218,7 @@ NPObject* WebPluginProxy::GetWindowScriptNPObject() { NPObject* WebPluginProxy::GetPluginElement() { if (plugin_element_) - return WebBindings::retainObject(plugin_element_); + return plugin_element_; int npobject_route_id = channel_->GenerateRouteID(); bool success = false; |