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

Unified Diff: third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp

Issue 2589143003: Add 'get' prefix for Settings.in generated code. (Closed)
Patch Set: Only get prefix and no capitalization. Created 3 years, 11 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: third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
diff --git a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
index b846410eb5486a690dd33e426bf2cc23a1d54927..5a0f020e992218c50ae6f685d64835b73d864cef 100644
--- a/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
+++ b/third_party/WebKit/Source/modules/presentation/PresentationRequest.cpp
@@ -106,7 +106,7 @@ bool PresentationRequest::hasPendingActivity() const {
ScriptPromise PresentationRequest::start(ScriptState* scriptState) {
Settings* contextSettings = settings(getExecutionContext());
bool isUserGestureRequired =
- !contextSettings || contextSettings->presentationRequiresUserGesture();
+ !contextSettings || contextSettings->getPresentationRequiresUserGesture();
if (isUserGestureRequired && !UserGestureIndicator::utilizeUserGesture())
return ScriptPromise::rejectWithDOMException(

Powered by Google App Engine
This is Rietveld 408576698