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

Unified Diff: Source/web/WebSettingsImpl.cpp

Issue 135753002: Update web classes to use OVERRIDE / FINAL when needed (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebase Created 6 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 | « Source/web/WebSettingsImpl.h ('k') | Source/web/WebSharedWorkerImpl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/web/WebSettingsImpl.cpp
diff --git a/Source/web/WebSettingsImpl.cpp b/Source/web/WebSettingsImpl.cpp
index 3e3bc46668aa0d05a4eaa05c508fe04264ab176e..0bcf26cad646e2aeff231603853431d012fb3504 100644
--- a/Source/web/WebSettingsImpl.cpp
+++ b/Source/web/WebSettingsImpl.cpp
@@ -139,11 +139,6 @@ void WebSettingsImpl::setDeviceSupportsMouse(bool deviceSupportsMouse)
m_settings->setDeviceSupportsMouse(deviceSupportsMouse);
}
-bool WebSettingsImpl::deviceSupportsTouch()
-{
- return m_settings->deviceSupportsTouch();
-}
-
void WebSettingsImpl::setAutoZoomFocusedNodeToLegibleScale(bool autoZoomFocusedNodeToLegibleScale)
{
m_autoZoomFocusedNodeToLegibleScale = autoZoomFocusedNodeToLegibleScale;
@@ -528,10 +523,6 @@ void WebSettingsImpl::setAntialiased2dCanvasEnabled(bool enabled)
m_settings->setAntialiased2dCanvasEnabled(enabled);
}
-void WebSettingsImpl::setDeferred2dCanvasEnabled(bool enabled)
-{
-}
-
void WebSettingsImpl::setDeferredImageDecodingEnabled(bool enabled)
{
DeferredImageDecoder::setEnabled(enabled);
@@ -668,21 +659,6 @@ bool WebSettingsImpl::mainFrameResizesAreOrientationChanges() const
return m_mainFrameResizesAreOrientationChanges;
}
-void WebSettingsImpl::setShouldDisplaySubtitles(bool enabled)
-{
- m_settings->setShouldDisplaySubtitles(enabled);
-}
-
-void WebSettingsImpl::setShouldDisplayCaptions(bool enabled)
-{
- m_settings->setShouldDisplayCaptions(enabled);
-}
-
-void WebSettingsImpl::setShouldDisplayTextDescriptions(bool enabled)
-{
- m_settings->setShouldDisplayTextDescriptions(enabled);
-}
-
void WebSettingsImpl::setShouldRespectImageOrientation(bool enabled)
{
m_settings->setShouldRespectImageOrientation(enabled);
« no previous file with comments | « Source/web/WebSettingsImpl.h ('k') | Source/web/WebSharedWorkerImpl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698