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

Unified Diff: Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp

Issue 9950115: Revert 111028 - Support W3C Full Screen API proposal (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: 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
« no previous file with comments | « Source/WebKit/mac/WebView/WebView.mm ('k') | Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp
===================================================================
--- Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp (revision 113078)
+++ Source/WebKit2/UIProcess/WebFullScreenManagerProxy.cpp (working copy)
@@ -91,7 +91,10 @@
void WebFullScreenManagerProxy::supportsFullScreen(bool withKeyboard, bool& supports)
{
- supports = true;
+ if (withKeyboard)
+ supports = false;
+ else
+ supports = true;
}
} // namespace WebKit
« no previous file with comments | « Source/WebKit/mac/WebView/WebView.mm ('k') | Source/WebKit2/WebProcess/FullScreen/WebFullScreenManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698