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

Unified Diff: content/public/browser/content_browser_client.h

Issue 9568002: Renamed speech input implementation from to speech_recognition_*. The namespace has been renamed fr… (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Fixed nits according to reviewers and renamed x-webkit-speech related stuff to InputTagSpeech*. Created 8 years, 10 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/public/browser/content_browser_client.h
diff --git a/content/public/browser/content_browser_client.h b/content/public/browser/content_browser_client.h
index d8484060f8d3c481fd8b4e3ffe87a35dde345edd..ed2198f2788b03c06588ee2dac586b0263bccd41 100644
--- a/content/public/browser/content_browser_client.h
+++ b/content/public/browser/content_browser_client.h
@@ -33,7 +33,7 @@ class AccessTokenStore;
class BrowserMainParts;
class RenderProcessHost;
class SiteInstance;
-class SpeechInputManagerDelegate;
+class SpeechRecognitionManagerDelegate;
class WebContents;
class WebContentsView;
struct MainFunctionParams;
@@ -316,9 +316,10 @@ class ContentBrowserClient {
// This is when it can optionally add a delegate or ResourceQueueDelegates.
virtual void ResourceDispatcherHostCreated() = 0;
- // Allows the embedder to return a delegate for the SpeechInputManager. The
- // delegate will be owned by the manager. It's valid to return NULL.
- virtual SpeechInputManagerDelegate* GetSpeechInputManagerDelegate() = 0;
+ // Allows the embedder to return a delegate for the SpeechRecognitionManager.
+ // The delegate will be owned by the manager. It's valid to return NULL.
+ virtual SpeechRecognitionManagerDelegate*
+ GetSpeechRecognitionManagerDelegate() = 0;
// Getters for common objects.
virtual ui::Clipboard* GetClipboard() = 0;

Powered by Google App Engine
This is Rietveld 408576698