| Index: content/renderer/render_view.h
|
| diff --git a/content/renderer/render_view.h b/content/renderer/render_view.h
|
| index 34e2fa1c3b9dd9ad768ddfad08a9558d776333a2..243b522fbcec0c91a534675bccf47e34e30587c5 100644
|
| --- a/content/renderer/render_view.h
|
| +++ b/content/renderer/render_view.h
|
| @@ -398,6 +398,8 @@ class RenderView : public RenderWidget,
|
| virtual bool supportsFullscreen();
|
| virtual void enterFullscreenForNode(const WebKit::WebNode&);
|
| virtual void exitFullscreenForNode(const WebKit::WebNode&);
|
| + virtual void enterFullscreenForElement() OVERRIDE;
|
| + virtual void exitFullscreenForElement() OVERRIDE;
|
| virtual void setStatusText(const WebKit::WebString& text);
|
| virtual void setMouseOverURL(const WebKit::WebURL& url);
|
| virtual void setKeyboardFocusURL(const WebKit::WebURL& url);
|
| @@ -810,6 +812,7 @@ class RenderView : public RenderWidget,
|
| #endif
|
| void OnSetZoomLevel(double zoom_level);
|
| void OnSetZoomLevelForLoadingURL(const GURL& url, double zoom_level);
|
| + void OnExitFullscreen();
|
| void OnShouldClose();
|
| void OnStop();
|
| void OnStopFinding(const ViewMsg_StopFinding_Params& params);
|
|
|