| 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();
|
|
|