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

Unified Diff: third_party/WebKit/Source/web/WebSettingsImpl.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
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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..0be2ae15358580ea4d4f29156bc43c32c8bc749d 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 {
« no previous file with comments | « third_party/WebKit/Source/web/WebPagePopupImpl.cpp ('k') | third_party/WebKit/Source/web/WebViewImpl.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698