Index: content/browser/renderer_host/render_view_host_impl.cc |
diff --git a/content/browser/renderer_host/render_view_host_impl.cc b/content/browser/renderer_host/render_view_host_impl.cc |
index 2469ec2b5cd4cade33731296a6f568757e64698e..2dae76a91f19e7447678cb0c6b9cbf47605b6afe 100644 |
--- a/content/browser/renderer_host/render_view_host_impl.cc |
+++ b/content/browser/renderer_host/render_view_host_impl.cc |
@@ -692,6 +692,10 @@ void RenderViewHostImpl::ActivateNearestFindResult(int request_id, |
void RenderViewHostImpl::RequestFindMatchRects(int current_version) { |
Send(new ViewMsg_FindMatchRects(GetRoutingID(), current_version)); |
} |
+ |
+void RenderViewHostImpl::FullscreenChanged(bool is_fullscreen) { |
+ Send(new ViewMsg_FullscreenChanged(GetRoutingID(), is_fullscreen)); |
+} |
#endif |
void RenderViewHostImpl::DragTargetDragEnter( |