| Index: third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/InputMethodController.cpp b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| index 8c19fd570282b70f2025b2eaf97c27d4ca236d23..c4e039d5220e16740a7d5bc8ae5457bf5c888c2d 100644
|
| --- a/third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/InputMethodController.cpp
|
| @@ -45,8 +45,6 @@
|
| #include "core/layout/LayoutObject.h"
|
| #include "core/layout/LayoutTheme.h"
|
| #include "core/page/ChromeClient.h"
|
| -#include "core/page/FocusController.h"
|
| -#include "core/page/Page.h"
|
|
|
| namespace blink {
|
|
|
| @@ -1136,14 +1134,6 @@
|
| }
|
| }
|
|
|
| - if (GetDocument().GetPage()->GetFocusController().NextFocusableElementInForm(
|
| - element, kWebFocusTypeForward))
|
| - flags |= kWebTextInputFlagHaveNextFocusableElement;
|
| -
|
| - if (GetDocument().GetPage()->GetFocusController().NextFocusableElementInForm(
|
| - element, kWebFocusTypeBackward))
|
| - flags |= kWebTextInputFlagHavePreviousFocusableElement;
|
| -
|
| return flags;
|
| }
|
|
|
|
|