| Index: content/browser/web_contents/web_contents_impl.h
|
| diff --git a/content/browser/web_contents/web_contents_impl.h b/content/browser/web_contents/web_contents_impl.h
|
| index 07179400aab8ee589935386cc12a0f26336c9315..782389f651aa033f0248c0d2bda583d5a70cbd3d 100644
|
| --- a/content/browser/web_contents/web_contents_impl.h
|
| +++ b/content/browser/web_contents/web_contents_impl.h
|
| @@ -395,6 +395,7 @@ class CONTENT_EXPORT WebContentsImpl
|
| void AccessibilityEventReceived(
|
| const std::vector<AXEventNotificationDetails>& details) override;
|
| RenderFrameHost* GetGuestByInstanceID(
|
| + RenderFrameHost* render_frame_host,
|
| int browser_plugin_instance_id) override;
|
| GeolocationServiceContext* GetGeolocationServiceContext() override;
|
| void EnterFullscreenMode(const GURL& origin) override;
|
| @@ -818,7 +819,8 @@ class CONTENT_EXPORT WebContentsImpl
|
| // |result| is true if permission was granted.
|
| void OnPpapiBrokerPermissionResult(int routing_id, bool result);
|
|
|
| - void OnBrowserPluginMessage(const IPC::Message& message);
|
| + void OnBrowserPluginMessage(RenderFrameHost* render_frame_host,
|
| + const IPC::Message& message);
|
| #endif // defined(ENABLE_PLUGINS)
|
| void OnDidDownloadImage(int id,
|
| int http_status_code,
|
|
|