Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4667)

Unified Diff: chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc

Issue 2177023002: Remove spellchecker feedback. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);

Powered by Google App Engine
This is Rietveld 408576698