diff options
Diffstat (limited to 'content/browser')
-rw-r--r-- | content/browser/tab_contents/tab_contents.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/tab_contents/tab_contents.cc b/content/browser/tab_contents/tab_contents.cc index 60baede..aa7d8e0 100644 --- a/content/browser/tab_contents/tab_contents.cc +++ b/content/browser/tab_contents/tab_contents.cc @@ -983,7 +983,7 @@ void TabContents::ToggleFullscreenMode(bool enter_fullscreen) { } bool TabContents::IsFullscreenForCurrentTab() const { - return delegate_ ? delegate_->IsFullscreenForTabOrPending(this) : false; + return delegate_ ? delegate_->IsFullscreenForTab(this) : false; } void TabContents::RequestToLockMouse() { |