| 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 287e661d392b34cbf7ad5f1c54eb5e708da931b8..2ca15213cf3dc5cc876e86b87e6ead128a78b501 100644
|
| --- a/content/browser/tab_contents/tab_contents.cc
|
| +++ b/content/browser/tab_contents/tab_contents.cc
|
| @@ -519,6 +519,10 @@ void TabContents::ToggleFullscreenMode(bool enter_fullscreen) {
|
| delegate_->ToggleFullscreenModeForTab(this, enter_fullscreen);
|
| }
|
|
|
| +bool TabContents::IsFullscreenForCurrentTab() const {
|
| + return delegate_ ? delegate_->IsFullscreenForTab(this) : false;
|
| +}
|
| +
|
| void TabContents::UpdatePreferredSize(const gfx::Size& pref_size) {
|
| if (delegate_)
|
| delegate_->UpdatePreferredSize(this, pref_size);
|
|
|