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

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

Issue 63273002: Rename WebKit namespace to blink (part 4) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 1 month 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 852756dd4206da8ec28ce28603cd4ffc6e05bd8a..1a04523fff69efa9a7dcbbe4eb1f01f1251335e6 100644
--- a/chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc
+++ b/chrome/renderer/spellchecker/spellcheck_provider_mac_unittest.cc
@@ -53,7 +53,7 @@ void FakeMessageArrival(SpellCheckProvider* provider,
TEST_F(SpellCheckProviderMacTest, SingleRoundtripSuccess) {
FakeTextCheckingCompletion completion;
- provider_.RequestTextChecking(WebKit::WebString("hello "),
+ provider_.RequestTextChecking(blink::WebString("hello "),
&completion,
std::vector<SpellCheckMarker>());
EXPECT_EQ(completion.completion_count_, 0U);
@@ -71,11 +71,11 @@ TEST_F(SpellCheckProviderMacTest, SingleRoundtripSuccess) {
TEST_F(SpellCheckProviderMacTest, TwoRoundtripSuccess) {
FakeTextCheckingCompletion completion1;
- provider_.RequestTextChecking(WebKit::WebString("hello "),
+ provider_.RequestTextChecking(blink::WebString("hello "),
&completion1,
std::vector<SpellCheckMarker>());
FakeTextCheckingCompletion completion2;
- provider_.RequestTextChecking(WebKit::WebString("bye "),
+ provider_.RequestTextChecking(blink::WebString("bye "),
&completion2,
std::vector<SpellCheckMarker>());

Powered by Google App Engine
This is Rietveld 408576698