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

Unified Diff: Source/web/WebSettingsImpl.cpp

Issue 428633004: Webkit setting for embedders that do not support fullscreen. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 6 years, 5 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: Source/web/WebSettingsImpl.cpp
diff --git a/Source/web/WebSettingsImpl.cpp b/Source/web/WebSettingsImpl.cpp
index 07803b4746f24e260fddb01a3f572a4368f8f76e..d6db0e83f94739b5f150ace8c1e02c10188ba0b2 100644
--- a/Source/web/WebSettingsImpl.cpp
+++ b/Source/web/WebSettingsImpl.cpp
@@ -74,6 +74,11 @@ void WebSettingsImpl::setFixedFontFamily(const WebString& font, UScriptCode scri
m_settings->notifyGenericFontFamilyChange();
}
+void WebSettingsImpl::setFullscreenEnabled(bool enabled)
+{
+ m_fullscreenEnabled = enabled;
+}
+
void WebSettingsImpl::setSerifFontFamily(const WebString& font, UScriptCode script)
{
if (m_settings->genericFontFamilySettings().updateSerif(font, script))

Powered by Google App Engine
This is Rietveld 408576698