diff options
Diffstat (limited to 'content/browser/tab_contents/tab_contents_delegate.cc')
-rw-r--r-- | content/browser/tab_contents/tab_contents_delegate.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/content/browser/tab_contents/tab_contents_delegate.cc b/content/browser/tab_contents/tab_contents_delegate.cc index 07a5fc5..dec1c13 100644 --- a/content/browser/tab_contents/tab_contents_delegate.cc +++ b/content/browser/tab_contents/tab_contents_delegate.cc @@ -283,6 +283,10 @@ void TabContentsDelegate::ToggleFullscreenModeForTab(TabContents* tab, bool enter_fullscreen) { } +bool TabContentsDelegate::IsFullscreenForTab(const TabContents* tab) const { + return false; +} + void TabContentsDelegate::JSOutOfMemory(TabContents* tab) { } |