Index: content/renderer/render_view_impl.cc |
=================================================================== |
--- content/renderer/render_view_impl.cc (revision 105467) |
+++ content/renderer/render_view_impl.cc (working copy) |
@@ -554,6 +554,13 @@ |
return found; |
} |
+bool RenderViewImpl::IsInFullscreenMode() { |
darin (slow to review)
2011/10/14 07:54:45
Actually, I plan on making this a method of Render
|
+ // TODO(darin): add a boolean flag to ViewMsg_Resize indicating whether or |
+ // not we are in fullscreen mode. Return the value that was reported via the |
+ // ViewMsg_Resize IPC. |
+ return true; |
+} |
+ |
bool RenderViewImpl::OnMessageReceived(const IPC::Message& message) { |
WebFrame* main_frame = webview() ? webview()->mainFrame() : NULL; |
if (main_frame) |