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

Unified Diff: chrome/renderer/spellchecker/spellcheck_provider_test.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_test.cc
diff --git a/chrome/renderer/spellchecker/spellcheck_provider_test.cc b/chrome/renderer/spellchecker/spellcheck_provider_test.cc
index 59fe3f61222ea28ce62e8d5fce2d89c3995b249c..427c3e1ba2d675700f98e2e46b65e2c5988e292a 100644
--- a/chrome/renderer/spellchecker/spellcheck_provider_test.cc
+++ b/chrome/renderer/spellchecker/spellcheck_provider_test.cc
@@ -21,7 +21,7 @@ FakeTextCheckingCompletion::FakeTextCheckingCompletion()
FakeTextCheckingCompletion::~FakeTextCheckingCompletion() {}
void FakeTextCheckingCompletion::didFinishCheckingText(
- const WebKit::WebVector<WebKit::WebTextCheckingResult>& results) {
+ const blink::WebVector<blink::WebTextCheckingResult>& results) {
++completion_count_;
}
@@ -67,7 +67,7 @@ void TestingSpellCheckProvider::OnCallSpellingService(int route_id,
NOTREACHED();
#else
++spelling_service_call_count_;
- WebKit::WebTextCheckingCompletion* completion =
+ blink::WebTextCheckingCompletion* completion =
text_check_completions_.Lookup(identifier);
if (!completion) {
ResetResult();
@@ -75,10 +75,10 @@ void TestingSpellCheckProvider::OnCallSpellingService(int route_id,
}
text_.assign(text);
text_check_completions_.Remove(identifier);
- std::vector<WebKit::WebTextCheckingResult> results;
- results.push_back(WebKit::WebTextCheckingResult(
- WebKit::WebTextDecorationTypeSpelling,
- 0, 5, WebKit::WebString("hello")));
+ std::vector<blink::WebTextCheckingResult> results;
+ results.push_back(blink::WebTextCheckingResult(
+ blink::WebTextDecorationTypeSpelling,
+ 0, 5, blink::WebString("hello")));
completion->didFinishCheckingText(results);
last_request_ = text;
last_results_ = results;
« no previous file with comments | « chrome/renderer/spellchecker/spellcheck_provider_test.h ('k') | chrome/renderer/spellchecker/spellcheck_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698