Update blink_editing_behavior.patch

This commit is contained in:
Cheng Zhao 2017-01-19 15:22:40 +09:00
Родитель 9bcc64343a
Коммит 5bd7be3911
1 изменённых файлов: 9 добавлений и 9 удалений

Просмотреть файл

@ -1,13 +1,13 @@
diff --git a/third_party/WebKit/Source/core/editing/EditingBehavior.h b/third_party/WebKit/Source/core/editing/EditingBehavior.h
index 2c4cce6..d8df6d9 100644
index 3f098ef..01f1ad4 100644
--- a/third_party/WebKit/Source/core/editing/EditingBehavior.h
+++ b/third_party/WebKit/Source/core/editing/EditingBehavior.h
@@ -74,7 +74,7 @@ public:
// On Mac and Windows, pressing backspace (when it isn't handled otherwise) should navigate back.
bool shouldNavigateBackOnBackspace() const
{
- return m_type != EditingUnixBehavior && m_type != EditingAndroidBehavior;
+ return false;
}
@@ -85,7 +85,7 @@ class CORE_EXPORT EditingBehavior {
// On Mac and Windows, pressing backspace (when it isn't handled otherwise)
// should navigate back.
bool shouldNavigateBackOnBackspace() const {
- return m_type != EditingUnixBehavior && m_type != EditingAndroidBehavior;
+ return false;
}
// On Mac, selecting backwards by word/line from the middle of a word/line, and then going
// On Mac, selecting backwards by word/line from the middle of a word/line,