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

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

Issue 268723002: Remove MockWebSpeechInputController (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/WebTestProxy.h
diff --git a/content/shell/renderer/test_runner/WebTestProxy.h b/content/shell/renderer/test_runner/WebTestProxy.h
index d87518e5a101ee49ea590e8b70b260d1176bf546..344646717984718d382a251724ea851a951ae4c5 100644
--- a/content/shell/renderer/test_runner/WebTestProxy.h
+++ b/content/shell/renderer/test_runner/WebTestProxy.h
@@ -51,8 +51,6 @@ class WebNotificationPresenter;
class WebPlugin;
class WebRange;
class WebSerializedScriptValue;
-class WebSpeechInputController;
-class WebSpeechInputListener;
class WebSpeechRecognizer;
class WebSpellCheckClient;
class WebString;
@@ -73,7 +71,6 @@ typedef unsigned WebColor;
}
namespace WebTestRunner {
-class MockWebSpeechInputController;
class MockWebSpeechRecognizer;
class SpellCheckClient;
class TestInterfaces;
@@ -119,7 +116,6 @@ public:
void discardBackingStore();
blink::WebMIDIClientMock* midiClientMock();
- WebTestRunner::MockWebSpeechInputController* speechInputControllerMock();
WebTestRunner::MockWebSpeechRecognizer* speechRecognizerMock();
WebTestRunner::WebTaskList* taskList() { return &m_taskList; }
@@ -156,7 +152,6 @@ protected:
void printPage(blink::WebLocalFrame*);
blink::WebNotificationPresenter* notificationPresenter();
blink::WebMIDIClient* webMIDIClient();
- blink::WebSpeechInputController* speechInputController(blink::WebSpeechInputListener*);
blink::WebSpeechRecognizer* speechRecognizer();
bool requestPointerLock();
void requestPointerUnlock();
@@ -222,8 +217,6 @@ private:
scoped_ptr<blink::WebMIDIClientMock> m_midiClient;
scoped_ptr<WebTestRunner::MockWebSpeechRecognizer> m_speechRecognizer;
- scoped_ptr<WebTestRunner::MockWebSpeechInputController>
- m_speechInputController;
private:
DISALLOW_COPY_AND_ASSIGN(WebTestProxyBase);
@@ -315,10 +308,6 @@ public:
{
return WebTestProxyBase::webMIDIClient();
}
- virtual blink::WebSpeechInputController* speechInputController(blink::WebSpeechInputListener* listener)
- {
- return WebTestProxyBase::speechInputController(listener);
- }
virtual blink::WebSpeechRecognizer* speechRecognizer()
{
return WebTestProxyBase::speechRecognizer();

Powered by Google App Engine
This is Rietveld 408576698