| Index: third_party/WebKit/Source/core/testing/Internals.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| index 8449f7f3c6847f3a2fed1f2ec032fbd862d3d0de..981251a01dc68e98f30b0d50d16104fcfb19c7c4 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -67,7 +67,6 @@
|
| #include "core/editing/markers/DocumentMarker.h"
|
| #include "core/editing/markers/DocumentMarkerController.h"
|
| #include "core/editing/serializers/Serialization.h"
|
| -#include "core/editing/spellcheck/IdleSpellCheckCallback.h"
|
| #include "core/editing/spellcheck/SpellCheckRequester.h"
|
| #include "core/editing/spellcheck/SpellChecker.h"
|
| #include "core/frame/EventHandlerRegistry.h"
|
| @@ -210,9 +209,7 @@ static WTF::Optional<DocumentMarker::MarkerTypes> markerTypesFrom(
|
| static SpellCheckRequester* spellCheckRequester(Document* document) {
|
| if (!document || !document->frame())
|
| return 0;
|
| - if (!RuntimeEnabledFeatures::idleTimeSpellCheckingEnabled())
|
| - return &document->frame()->spellChecker().spellCheckRequester();
|
| - return &document->frame()->idleSpellCheckCallback().spellCheckRequester();
|
| + return &document->frame()->spellChecker().spellCheckRequester();
|
| }
|
|
|
| static ScrollableArea* scrollableAreaForNode(Node* node) {
|
|
|