Fix execution of OnBeforePluginLoad (issue #1284).

git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1744 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
Marshall Greenblatt 2014-06-12 20:42:53 +00:00
parent de5b859c0a
commit 2e54831860
1 changed files with 3 additions and 3 deletions

View File

@ -222,7 +222,7 @@ class CefPluginServiceFilter : public content::PluginServiceFilter {
virtual ~CefPluginServiceFilter() {}
virtual bool IsPluginAvailable(int render_process_id,
int render_view_id,
int render_frame_id,
const void* context,
const GURL& url,
const GURL& policy_url,
@ -230,8 +230,8 @@ class CefPluginServiceFilter : public content::PluginServiceFilter {
bool allowed = true;
CefRefPtr<CefBrowserHostImpl> browser =
CefBrowserHostImpl::GetBrowserForView(render_process_id,
render_view_id);
CefBrowserHostImpl::GetBrowserForFrame(render_process_id,
render_frame_id);
if (browser.get()) {
CefRefPtr<CefClient> client = browser->GetClient();
if (client.get()) {