diff options
Diffstat (limited to 'chromium/third_party/WebKit/Source/web/WebSettingsImpl.cpp')
-rw-r--r-- | chromium/third_party/WebKit/Source/web/WebSettingsImpl.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chromium/third_party/WebKit/Source/web/WebSettingsImpl.cpp b/chromium/third_party/WebKit/Source/web/WebSettingsImpl.cpp index ff5ac4d25bd..e081ba3e58e 100644 --- a/chromium/third_party/WebKit/Source/web/WebSettingsImpl.cpp +++ b/chromium/third_party/WebKit/Source/web/WebSettingsImpl.cpp @@ -732,4 +732,9 @@ void WebSettingsImpl::setMediaControlsEnabled(bool enabled) { m_settings->setMediaControlsEnabled(enabled); } +void WebSettingsImpl::setDoNotUpdateSelectionOnMutatingSelectionRange( + bool enabled) { + m_settings->setDoNotUpdateSelectionOnMutatingSelectionRange(enabled); +} + } // namespace blink |