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

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

Issue 636863003: Make SpeechRecognition per RenderFrame instead of per RenderView. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: cleanups Created 6 years, 1 month 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/web_test_proxy.h
diff --git a/content/shell/renderer/test_runner/web_test_proxy.h b/content/shell/renderer/test_runner/web_test_proxy.h
index c93787bf0708d204c4cee5cd6caa222f17d7d67e..2e79577a9e0750876e71cfeff0ae5f1889331c96 100644
--- a/content/shell/renderer/test_runner/web_test_proxy.h
+++ b/content/shell/renderer/test_runner/web_test_proxy.h
@@ -175,7 +175,6 @@ class WebTestProxyBase {
void PrintPage(blink::WebLocalFrame* frame);
blink::WebNotificationPresenter* GetNotificationPresenter();
blink::WebMIDIClient* GetWebMIDIClient();
- blink::WebSpeechRecognizer* GetSpeechRecognizer();
bool RequestPointerLock();
void RequestPointerUnlock();
bool IsPointerLocked();
@@ -351,9 +350,6 @@ class WebTestProxy : public Base, public WebTestProxyBase {
virtual void printPage(blink::WebLocalFrame* frame) {
WebTestProxyBase::PrintPage(frame);
}
- virtual blink::WebSpeechRecognizer* speechRecognizer() {
- return WebTestProxyBase::GetSpeechRecognizer();
- }
virtual bool requestPointerLock() {
return WebTestProxyBase::RequestPointerLock();
}

Powered by Google App Engine
This is Rietveld 408576698