diff --git a/libcef/browser/content_browser_client.cc b/libcef/browser/content_browser_client.cc index af09b87cb..fd1c7e6c3 100644 --- a/libcef/browser/content_browser_client.cc +++ b/libcef/browser/content_browser_client.cc @@ -223,7 +223,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, @@ -231,8 +231,8 @@ class CefPluginServiceFilter : public content::PluginServiceFilter { bool allowed = true; CefRefPtr browser = - CefBrowserHostImpl::GetBrowserForView(render_process_id, - render_view_id); + CefBrowserHostImpl::GetBrowserForFrame(render_process_id, + render_frame_id); if (browser.get()) { CefRefPtr client = browser->GetClient(); if (client.get()) {