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

Unified Diff: third_party/WebKit/Source/web/WebSettingsImpl.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/web/WebSettingsImpl.cpp
diff --git a/third_party/WebKit/Source/web/WebSettingsImpl.cpp b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
index 9af41745bafa81b72016a78c3c25ff11d7b61d33..c0901e0bfe9de86dd9f37ceab6f57311d0784eca 100644
--- a/third_party/WebKit/Source/web/WebSettingsImpl.cpp
+++ b/third_party/WebKit/Source/web/WebSettingsImpl.cpp
@@ -586,7 +586,7 @@ void WebSettingsImpl::setEnableTouchAdjustment(bool enabled) {
}
bool WebSettingsImpl::multiTargetTapNotificationEnabled() {
- return m_settings->multiTargetTapNotificationEnabled();
+ return m_settings->GetMultiTargetTapNotificationEnabled();
}
void WebSettingsImpl::setMultiTargetTapNotificationEnabled(bool enabled) {
@@ -594,11 +594,11 @@ void WebSettingsImpl::setMultiTargetTapNotificationEnabled(bool enabled) {
}
bool WebSettingsImpl::viewportEnabled() const {
- return m_settings->viewportEnabled();
+ return m_settings->GetViewportEnabled();
}
bool WebSettingsImpl::viewportMetaEnabled() const {
- return m_settings->viewportMetaEnabled();
+ return m_settings->GetViewportMetaEnabled();
}
bool WebSettingsImpl::doubleTapToZoomEnabled() const {
@@ -606,7 +606,7 @@ bool WebSettingsImpl::doubleTapToZoomEnabled() const {
}
bool WebSettingsImpl::mockGestureTapHighlightsEnabled() const {
- return m_settings->mockGestureTapHighlightsEnabled();
+ return m_settings->GetMockGestureTapHighlightsEnabled();
}
bool WebSettingsImpl::shrinksViewportContentToFit() const {

Powered by Google App Engine
This is Rietveld 408576698