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

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

Issue 263823011: test_runner: Move more Mock* files 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 a2b26a79a7eb2c82c348adf184bf5c4cfbca37f7..d4503e492ed65847b6a82a770c639970f1deafc7 100644
--- a/content/shell/renderer/test_runner/SpellCheckClient.h
+++ b/content/shell/renderer/test_runner/SpellCheckClient.h
@@ -15,17 +15,19 @@ class WebTestProxyBase;
}
namespace WebTestRunner {
-
class WebTestDelegate;
+}
+
+namespace content {
class SpellCheckClient : public blink::WebSpellCheckClient {
public:
explicit SpellCheckClient(content::WebTestProxyBase*);
virtual ~SpellCheckClient();
- void setDelegate(WebTestDelegate*);
+ void setDelegate(WebTestRunner::WebTestDelegate*);
- WebTaskList* taskList() { return &m_taskList; }
+ WebTestRunner::WebTaskList* taskList() { return &m_taskList; }
MockSpellCheck* mockSpellCheck() { return &m_spellcheck; }
// blink::WebSpellCheckClient implementation.
@@ -46,15 +48,15 @@ private:
blink::WebString m_lastRequestedTextCheckString;
blink::WebTextCheckingCompletion* m_lastRequestedTextCheckingCompletion;
- WebTaskList m_taskList;
+ WebTestRunner::WebTaskList m_taskList;
- WebTestDelegate* m_delegate;
+ WebTestRunner::WebTestDelegate* m_delegate;
content::WebTestProxyBase* m_webTestProxy;
DISALLOW_COPY_AND_ASSIGN(SpellCheckClient);
};
-}
+} // namespace content
#endif // CONTENT_SHELL_RENDERER_TEST_RUNNER_SPELLCHECKCLIENT_H_
« no previous file with comments | « content/shell/renderer/test_runner/MockWebMIDIAccessor.cpp ('k') | content/shell/renderer/test_runner/SpellCheckClient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698