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

Unified Diff: public/web/WebFrameClient.h

Issue 636863002: Make SpeechRecognitionController per frame instead of per page. Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: first of many-ways CL 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
« no previous file with comments | « Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: public/web/WebFrameClient.h
diff --git a/public/web/WebFrameClient.h b/public/web/WebFrameClient.h
index 1b16e803c677baee866bb668623fe178781807c3..28def001f841a27a383aeca695f332b60d18ba62 100644
--- a/public/web/WebFrameClient.h
+++ b/public/web/WebFrameClient.h
@@ -82,6 +82,7 @@ class WebRTCPeerConnectionHandler;
class WebScreenOrientationClient;
class WebSharedWorker;
class WebSharedWorkerClient;
+class WebSpeechRecognizer;
class WebString;
class WebURL;
class WebURLLoader;
@@ -566,6 +567,7 @@ public:
// Access the embedder API for (client-based) screen orientation client .
virtual WebScreenOrientationClient* webScreenOrientationClient() { return 0; }
+
// Accessibility -------------------------------------------------------
// Notifies embedder about an accessibility event.
@@ -580,6 +582,7 @@ public:
const WebAXObject& endObject,
int endOffset) { }
+
// ServiceWorker -------------------------------------------------------
// Whether the document associated with WebDataSource is controlled by the
@@ -590,6 +593,12 @@ public:
// associated with the WebDataSource.
virtual int64_t serviceWorkerID(WebDataSource&) { return -1; }
+
+ // Speech --------------------------------------------------------------
+
+ // Access the embedder API for speech recognition services.
+ virtual WebSpeechRecognizer* speechRecognizer() { return 0; }
+
protected:
virtual ~WebFrameClient() { }
};
« no previous file with comments | « Source/web/WebViewImpl.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698