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

Unified Diff: third_party/WebKit/Source/core/dom/Fullscreen.cpp

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Capitalize the prefix. Created 4 years 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: third_party/WebKit/Source/core/dom/Fullscreen.cpp
diff --git a/third_party/WebKit/Source/core/dom/Fullscreen.cpp b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
index 40cc448ea83432ef3af4c7b89bb3ee7d81c14073..a7f0e4bee3c7ba12542fa61a82bf3cb4fcdc5de0 100644
--- a/third_party/WebKit/Source/core/dom/Fullscreen.cpp
+++ b/third_party/WebKit/Source/core/dom/Fullscreen.cpp
@@ -113,7 +113,7 @@ bool fullscreenIsSupported(Document& document) {
// Fullscreen is supported if there is no previously-established user
// preference, security risk, or platform limitation.
bool fullscreenSupported =
- !document.settings() || document.settings()->fullscreenSupported();
+ !document.settings() || document.settings()->GetFullscreenSupported();
if (!RuntimeEnabledFeatures::featurePolicyEnabled()) {
return fullscreenSupported;

Powered by Google App Engine
This is Rietveld 408576698