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

Unified Diff: content/shell/renderer/test_runner/SpellCheckClient.h

Issue 264003003: test_runner: Move everything else into content namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 months 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: 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);
};

Powered by Google App Engine
This is Rietveld 408576698