| Index: third_party/WebKit/Source/core/editing/spellcheck/SpellCheckerTest.cpp
|
| diff --git a/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckerTest.cpp b/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckerTest.cpp
|
| index e4539ef6109f23f32b8ce9ce1c6125f3ac3aedb0..b09ed882d212ebb84aa6dbdd1b04d5fd9d2255b4 100644
|
| --- a/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckerTest.cpp
|
| +++ b/third_party/WebKit/Source/core/editing/spellcheck/SpellCheckerTest.cpp
|
| @@ -6,6 +6,7 @@
|
|
|
| #include "core/editing/Editor.h"
|
| #include "core/editing/markers/DocumentMarkerController.h"
|
| +#include "core/editing/markers/SpellCheckMarker.h"
|
| #include "core/editing/spellcheck/SpellCheckRequester.h"
|
| #include "core/editing/spellcheck/SpellCheckTestBase.h"
|
| #include "core/frame/LocalFrame.h"
|
| @@ -109,8 +110,9 @@ TEST_F(SpellCheckerTest, MarkAndReplaceForHandlesMultipleReplacements) {
|
|
|
| // The Spelling marker's description should be a newline-separated list of the
|
| // suggested replacements
|
| - EXPECT_EQ("spellcheck\nspillchuck",
|
| - GetDocument().Markers().Markers()[0]->Description());
|
| + EXPECT_EQ(
|
| + "spellcheck\nspillchuck",
|
| + ToSpellCheckMarker(GetDocument().Markers().Markers()[0])->Description());
|
| }
|
|
|
| } // namespace blink
|
|
|