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

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: review comments Created 6 years 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 0cd6622a119ceb95a817fa452abc732cc3a5bd3f..5b854bea5ce0e7308c5bc1081f76b44886b9a4cc 100644
--- a/content/shell/renderer/test_runner/web_test_proxy.h
+++ b/content/shell/renderer/test_runner/web_test_proxy.h
@@ -173,7 +173,6 @@ class WebTestProxyBase {
blink::WebUserMediaClient* GetUserMediaClient();
void PrintPage(blink::WebLocalFrame* frame);
blink::WebMIDIClient* GetWebMIDIClient();
- blink::WebSpeechRecognizer* GetSpeechRecognizer();
bool RequestPointerLock();
void RequestPointerUnlock();
bool IsPointerLocked();
@@ -349,9 +348,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