Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(391)

Unified Diff: content/browser/tab_contents/tab_contents.cc

Issue 9702055: Automated tests for full screen & mouse lock M16 features (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sky issues addressed; merged to r128813 Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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 aa7d8e07ab70d920df104448025523837a4eacca..60baedef71d93294e74f4871858f3ba6de614450 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_->IsFullscreenForTab(this) : false;
+ return delegate_ ? delegate_->IsFullscreenForTabOrPending(this) : false;
}
void TabContents::RequestToLockMouse() {

Powered by Google App Engine
This is Rietveld 408576698