| Index: chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc
|
| diff --git a/chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc b/chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc
|
| index c280602b8e77e690c3334de6011a3700fcf381d2..c0644efe9415743c186c8c71a042a9c6cad10ea9 100644
|
| --- a/chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc
|
| +++ b/chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc
|
| @@ -7,7 +7,6 @@
|
|
|
| #include "base/strings/utf_string_conversions.h"
|
| #include "chrome/renderer/spellchecker/spellcheck_provider_test.h"
|
| -#include "components/spellcheck/common/spellcheck_marker.h"
|
| #include "components/spellcheck/common/spellcheck_messages.h"
|
| #include "components/spellcheck/common/spellcheck_result.h"
|
| #include "testing/gtest/include/gtest/gtest.h"
|
| @@ -33,9 +32,7 @@ void FakeMessageArrival(
|
| TEST_F(SpellCheckProviderMacTest, SingleRoundtripSuccess) {
|
| FakeTextCheckingCompletion completion;
|
|
|
| - provider_.RequestTextChecking(blink::WebString("hello "),
|
| - &completion,
|
| - std::vector<SpellCheckMarker>());
|
| + provider_.RequestTextChecking(blink::WebString("hello "), &completion);
|
| EXPECT_EQ(completion.completion_count_, 0U);
|
| EXPECT_EQ(provider_.messages_.size(), 1U);
|
| EXPECT_EQ(provider_.pending_text_request_size(), 1U);
|
| @@ -53,13 +50,9 @@ TEST_F(SpellCheckProviderMacTest, SingleRoundtripSuccess) {
|
|
|
| TEST_F(SpellCheckProviderMacTest, TwoRoundtripSuccess) {
|
| FakeTextCheckingCompletion completion1;
|
| - provider_.RequestTextChecking(blink::WebString("hello "),
|
| - &completion1,
|
| - std::vector<SpellCheckMarker>());
|
| + provider_.RequestTextChecking(blink::WebString("hello "), &completion1);
|
| FakeTextCheckingCompletion completion2;
|
| - provider_.RequestTextChecking(blink::WebString("bye "),
|
| - &completion2,
|
| - std::vector<SpellCheckMarker>());
|
| + provider_.RequestTextChecking(blink::WebString("bye "), &completion2);
|
|
|
| EXPECT_EQ(completion1.completion_count_, 0U);
|
| EXPECT_EQ(completion2.completion_count_, 0U);
|
|
|