diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-24 23:51:04 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-08-24 23:51:04 +0000 |
commit | 3bc0b560d93f137fc0f4a0ca16ef722d9dc80652 (patch) | |
tree | e3f984afce2c62319ea58b2d1fb952735406ce27 /content/browser/content_browser_client.h | |
parent | e6ad33a0c9538029a6835807e0f5444193e33327 (diff) | |
download | chromium_src-3bc0b560d93f137fc0f4a0ca16ef722d9dc80652.zip chromium_src-3bc0b560d93f137fc0f4a0ca16ef722d9dc80652.tar.gz chromium_src-3bc0b560d93f137fc0f4a0ca16ef722d9dc80652.tar.bz2 |
Get rid of link dependency from content to chrome. Make it get the SpeechInputManager through the embedder interface.
I've renamed Chrome's SpeechInputManagerImpl to ChromeSpeechInputManager, to match what we've been doing for other chrome implementations of content classes.
BUG=76697
Review URL: http://codereview.chromium.org/7729001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@98147 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/content_browser_client.h')
-rw-r--r-- | content/browser/content_browser_client.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/content/browser/content_browser_client.h b/content/browser/content_browser_client.h index ddaa303..c88e169 100644 --- a/content/browser/content_browser_client.h +++ b/content/browser/content_browser_client.h @@ -47,6 +47,10 @@ class URLRequestContextGetter; class X509Certificate; } +namespace speech_input { +class SpeechInputManager; +} + namespace ui { class Clipboard; } @@ -243,6 +247,7 @@ class ContentBrowserClient { virtual MHTMLGenerationManager* GetMHTMLGenerationManager() = 0; virtual DevToolsManager* GetDevToolsManager() = 0; virtual net::NetLog* GetNetLog() = 0; + virtual speech_input::SpeechInputManager* GetSpeechInputManager() = 0; // Returns true if fast shutdown is possible. virtual bool IsFastShutdownPossible() = 0; |