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

Unified Diff: Source/testing/runner/MockSpellCheck.h

Issue 61773005: Rename WebKit namespace to blink (Closed) Base URL: svn://svn.chromium.org/blink/trunk
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
« no previous file with comments | « Source/testing/runner/MockGrammarCheck.cpp ('k') | Source/testing/runner/MockSpellCheck.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/testing/runner/MockSpellCheck.h
diff --git a/Source/testing/runner/MockSpellCheck.h b/Source/testing/runner/MockSpellCheck.h
index 99a7a76a5aec82ae3f8dafc1e8e5323bf516f258..46af14835e8450a9c0a4fa3d66904d8cc62a345f 100644
--- a/Source/testing/runner/MockSpellCheck.h
+++ b/Source/testing/runner/MockSpellCheck.h
@@ -44,9 +44,9 @@ namespace WebTestRunner {
// words in webkit tests and mark them as missspelled.
// Even though this is sufficent for webkit tests, this class is not suitable
// for any other usages.
-class MockSpellCheck : public WebKit::WebNonCopyable {
+class MockSpellCheck : public blink::WebNonCopyable {
public:
- static void fillSuggestionList(const WebKit::WebString& word, WebKit::WebVector<WebKit::WebString>* suggestions);
+ static void fillSuggestionList(const blink::WebString& word, blink::WebVector<blink::WebString>* suggestions);
MockSpellCheck();
~MockSpellCheck();
@@ -59,11 +59,11 @@ public:
// the first invalid word to misspelledLength, respectively.
// For example, when the given text is " zz zz", this function sets 3 to
// misspelledOffset and 2 to misspelledLength, respectively.
- bool spellCheckWord(const WebKit::WebString& text, int* misspelledOffset, int* misspelledLength);
+ bool spellCheckWord(const blink::WebString& text, int* misspelledOffset, int* misspelledLength);
// Checks whether the specified text can be spell checked immediately using
// the spell checker cache.
- bool hasInCache(const WebKit::WebString& text);
+ bool hasInCache(const blink::WebString& text);
private:
// Initialize the internal resources if we need to initialize it.
« no previous file with comments | « Source/testing/runner/MockGrammarCheck.cpp ('k') | Source/testing/runner/MockSpellCheck.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698