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 6caebbec011dbead822390a5ed78d22052b9f9f4..e337fe844b89275183d90625a0c878442ff5a168 100644 |
--- a/content/browser/tab_contents/tab_contents.cc |
+++ b/content/browser/tab_contents/tab_contents.cc |
@@ -498,6 +498,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) |