Index: content/shell/renderer/test_runner/SpellCheckClient.h |
diff --git a/content/shell/renderer/test_runner/SpellCheckClient.h b/content/shell/renderer/test_runner/SpellCheckClient.h |
index d4503e492ed65847b6a82a770c639970f1deafc7..d7efa920d500a66567211088c90780bda2e0cd3b 100644 |
--- a/content/shell/renderer/test_runner/SpellCheckClient.h |
+++ b/content/shell/renderer/test_runner/SpellCheckClient.h |
@@ -11,23 +11,18 @@ |
#include "third_party/WebKit/public/web/WebSpellCheckClient.h" |
namespace content { |
-class WebTestProxyBase; |
-} |
-namespace WebTestRunner { |
class WebTestDelegate; |
-} |
- |
-namespace content { |
+class WebTestProxyBase; |
class SpellCheckClient : public blink::WebSpellCheckClient { |
public: |
- explicit SpellCheckClient(content::WebTestProxyBase*); |
+ explicit SpellCheckClient(WebTestProxyBase*); |
virtual ~SpellCheckClient(); |
- void setDelegate(WebTestRunner::WebTestDelegate*); |
+ void setDelegate(WebTestDelegate*); |
- WebTestRunner::WebTaskList* taskList() { return &m_taskList; } |
+ WebTaskList* taskList() { return &m_taskList; } |
MockSpellCheck* mockSpellCheck() { return &m_spellcheck; } |
// blink::WebSpellCheckClient implementation. |
@@ -48,11 +43,11 @@ private: |
blink::WebString m_lastRequestedTextCheckString; |
blink::WebTextCheckingCompletion* m_lastRequestedTextCheckingCompletion; |
- WebTestRunner::WebTaskList m_taskList; |
+ WebTaskList m_taskList; |
- WebTestRunner::WebTestDelegate* m_delegate; |
+ WebTestDelegate* m_delegate; |
- content::WebTestProxyBase* m_webTestProxy; |
+ WebTestProxyBase* m_webTestProxy; |
DISALLOW_COPY_AND_ASSIGN(SpellCheckClient); |
}; |