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

Unified Diff: Source/WebKit/chromium/src/WebSettingsImpl.cpp

Issue 14089009: Change long press behavior when touch text selection is enabled: (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: patch Created 7 years, 8 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/WebKit/chromium/src/WebSettingsImpl.h ('k') | Source/core/page/EventHandler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebKit/chromium/src/WebSettingsImpl.cpp
diff --git a/Source/WebKit/chromium/src/WebSettingsImpl.cpp b/Source/WebKit/chromium/src/WebSettingsImpl.cpp
index e423de3582c606ed0dd8ea46b0f0899df7cb33da..ca080f29a690564708e9860cce7e935ded8b1116 100644
--- a/Source/WebKit/chromium/src/WebSettingsImpl.cpp
+++ b/Source/WebKit/chromium/src/WebSettingsImpl.cpp
@@ -357,6 +357,11 @@ void WebSettingsImpl::setTouchDragDropEnabled(bool enabled)
m_settings->setTouchDragDropEnabled(enabled);
}
+void WebSettingsImpl::setTouchEditingEnabled(bool enabled)
+{
+ m_settings->setTouchEditingEnabled(enabled);
+}
+
void WebSettingsImpl::setThreadedHTMLParser(bool enabled)
{
m_settings->setThreadedHTMLParser(enabled);
@@ -619,6 +624,11 @@ bool WebSettingsImpl::scrollAnimatorEnabled() const
return m_settings->scrollAnimatorEnabled();
}
+bool WebSettingsImpl::touchEditingEnabled() const
+{
+ return m_settings->touchEditingEnabled();
+}
+
void WebSettingsImpl::setVisualWordMovementEnabled(bool enabled)
{
m_settings->setVisualWordMovementEnabled(enabled);
« no previous file with comments | « Source/WebKit/chromium/src/WebSettingsImpl.h ('k') | Source/core/page/EventHandler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698