| Index: components/plugins/renderer/webview_plugin.h
|
| diff --git a/components/plugins/renderer/webview_plugin.h b/components/plugins/renderer/webview_plugin.h
|
| index 4b87205cb56ebdcb6b2220da96afcdff73475d54..af352ec0a42023810b3941b9cb2fa1ea1f291cce 100644
|
| --- a/components/plugins/renderer/webview_plugin.h
|
| +++ b/components/plugins/renderer/webview_plugin.h
|
| @@ -110,7 +110,7 @@ class WebViewPlugin : public blink::WebPlugin,
|
| virtual void setToolTipText(const blink::WebString&,
|
| blink::WebTextDirection);
|
|
|
| - virtual void startDragging(blink::WebFrame* frame,
|
| + virtual void startDragging(blink::WebLocalFrame* frame,
|
| const blink::WebDragData& drag_data,
|
| blink::WebDragOperationsMask mask,
|
| const blink::WebImage& image,
|
| @@ -121,13 +121,13 @@ class WebViewPlugin : public blink::WebPlugin,
|
| virtual void didChangeCursor(const blink::WebCursorInfo& cursor);
|
|
|
| // WebFrameClient methods:
|
| - virtual void didClearWindowObject(blink::WebFrame* frame, int world_id);
|
| + virtual void didClearWindowObject(blink::WebLocalFrame* frame, int world_id);
|
|
|
| // This method is defined in WebPlugin as well as in WebFrameClient, but with
|
| // different parameters. We only care about implementing the WebPlugin
|
| // version, so we implement this method and call the default in WebFrameClient
|
| // (which does nothing) to correctly overload it.
|
| - virtual void didReceiveResponse(blink::WebFrame* frame,
|
| + virtual void didReceiveResponse(blink::WebLocalFrame* frame,
|
| unsigned identifier,
|
| const blink::WebURLResponse& response);
|
|
|
|
|