Index: content/browser/tab_contents/tab_contents.cc |
diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc |
index 8838b3f5d79eaee7b7211a15be929f2b5d3e8125..4524e1becc6bfae256732746384e60f3f9ea4bc4 100644 |
--- a/content/browser/tab_contents/tab_contents.cc |
+++ b/content/browser/tab_contents/tab_contents.cc |
@@ -480,6 +480,11 @@ void TabContents::HandleMouseActivate() { |
delegate_->HandleMouseActivate(); |
} |
+void TabContents::ToggleFullscreenMode(bool enter_fullscreen) { |
+ if (delegate_) |
+ delegate_->ToggleFullscreenModeForTab(this, enter_fullscreen); |
+} |
+ |
void TabContents::ShowContents() { |
RenderWidgetHostView* rwhv = GetRenderWidgetHostView(); |
if (rwhv) |