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

Unified Diff: Source/testing/runner/SpellCheckClient.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/NotificationPresenter.cpp ('k') | Source/testing/runner/SpellCheckClient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/testing/runner/SpellCheckClient.h
diff --git a/Source/testing/runner/SpellCheckClient.h b/Source/testing/runner/SpellCheckClient.h
index f46287fdc89046f4fad9f7f985b64ac1fc185e76..290c8fd82f3484f837a0eecc00e697e9924254f0 100644
--- a/Source/testing/runner/SpellCheckClient.h
+++ b/Source/testing/runner/SpellCheckClient.h
@@ -40,7 +40,7 @@ namespace WebTestRunner {
class WebTestDelegate;
-class SpellCheckClient : public WebKit::WebSpellCheckClient, public WebKit::WebNonCopyable {
+class SpellCheckClient : public blink::WebSpellCheckClient, public blink::WebNonCopyable {
public:
SpellCheckClient();
virtual ~SpellCheckClient();
@@ -50,14 +50,14 @@ public:
WebTaskList* taskList() { return &m_taskList; }
MockSpellCheck* mockSpellCheck() { return &m_spellcheck; }
- // WebKit::WebSpellCheckClient implementation.
- virtual void spellCheck(const WebKit::WebString&, int& offset, int& length, WebKit::WebVector<WebKit::WebString>* optionalSuggestions);
- virtual void checkTextOfParagraph(const WebKit::WebString&, WebKit::WebTextCheckingTypeMask, WebKit::WebVector<WebKit::WebTextCheckingResult>*);
- virtual void requestCheckingOfText(const WebKit::WebString&,
- const WebKit::WebVector<uint32_t>&,
- const WebKit::WebVector<unsigned>&,
- WebKit::WebTextCheckingCompletion*);
- virtual WebKit::WebString autoCorrectWord(const WebKit::WebString&);
+ // blink::WebSpellCheckClient implementation.
+ virtual void spellCheck(const blink::WebString&, int& offset, int& length, blink::WebVector<blink::WebString>* optionalSuggestions);
+ virtual void checkTextOfParagraph(const blink::WebString&, blink::WebTextCheckingTypeMask, blink::WebVector<blink::WebTextCheckingResult>*);
+ virtual void requestCheckingOfText(const blink::WebString&,
+ const blink::WebVector<uint32_t>&,
+ const blink::WebVector<unsigned>&,
+ blink::WebTextCheckingCompletion*);
+ virtual blink::WebString autoCorrectWord(const blink::WebString&);
private:
void finishLastTextCheck();
@@ -65,8 +65,8 @@ private:
// The mock spellchecker used in spellCheck().
MockSpellCheck m_spellcheck;
- WebKit::WebString m_lastRequestedTextCheckString;
- WebKit::WebTextCheckingCompletion* m_lastRequestedTextCheckingCompletion;
+ blink::WebString m_lastRequestedTextCheckString;
+ blink::WebTextCheckingCompletion* m_lastRequestedTextCheckingCompletion;
WebTaskList m_taskList;
« no previous file with comments | « Source/testing/runner/NotificationPresenter.cpp ('k') | Source/testing/runner/SpellCheckClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698