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

Side by Side Diff: chrome/browser/chrome_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: Rebased from master. Created 8 years, 9 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 5 #ifndef CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 6 #define CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
7 #pragma once 7 #pragma once
8 8
9 #include <set> 9 #include <set>
10 #include <string> 10 #include <string>
(...skipping 126 matching lines...) Expand 10 before | Expand all | Expand 10 after
137 int notification_id) OVERRIDE; 137 int notification_id) OVERRIDE;
138 virtual bool CanCreateWindow( 138 virtual bool CanCreateWindow(
139 const GURL& opener_url, 139 const GURL& opener_url,
140 const GURL& source_origin, 140 const GURL& source_origin,
141 WindowContainerType container_type, 141 WindowContainerType container_type,
142 content::ResourceContext* context, 142 content::ResourceContext* context,
143 int render_process_id) OVERRIDE; 143 int render_process_id) OVERRIDE;
144 virtual std::string GetWorkerProcessTitle( 144 virtual std::string GetWorkerProcessTitle(
145 const GURL& url, content::ResourceContext* context) OVERRIDE; 145 const GURL& url, content::ResourceContext* context) OVERRIDE;
146 virtual void ResourceDispatcherHostCreated() OVERRIDE; 146 virtual void ResourceDispatcherHostCreated() OVERRIDE;
147 virtual content::SpeechInputManagerDelegate* 147 virtual content::SpeechRecognitionManagerDelegate*
148 GetSpeechInputManagerDelegate() OVERRIDE; 148 GetSpeechRecognitionManagerDelegate() OVERRIDE;
149 virtual ui::Clipboard* GetClipboard() OVERRIDE; 149 virtual ui::Clipboard* GetClipboard() OVERRIDE;
150 virtual net::NetLog* GetNetLog() OVERRIDE; 150 virtual net::NetLog* GetNetLog() OVERRIDE;
151 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE; 151 virtual content::AccessTokenStore* CreateAccessTokenStore() OVERRIDE;
152 virtual bool IsFastShutdownPossible() OVERRIDE; 152 virtual bool IsFastShutdownPossible() OVERRIDE;
153 virtual void OverrideWebkitPrefs(RenderViewHost* rvh, 153 virtual void OverrideWebkitPrefs(RenderViewHost* rvh,
154 const GURL& url, 154 const GURL& url,
155 WebPreferences* prefs) OVERRIDE; 155 WebPreferences* prefs) OVERRIDE;
156 virtual void UpdateInspectorSetting(RenderViewHost* rvh, 156 virtual void UpdateInspectorSetting(RenderViewHost* rvh,
157 const std::string& key, 157 const std::string& key,
158 const std::string& value) OVERRIDE; 158 const std::string& value) OVERRIDE;
(...skipping 21 matching lines...) Expand all
180 private: 180 private:
181 // Set of origins that can use TCP/UDP private APIs from NaCl. 181 // Set of origins that can use TCP/UDP private APIs from NaCl.
182 std::set<std::string> allowed_socket_origins_; 182 std::set<std::string> allowed_socket_origins_;
183 183
184 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient); 184 DISALLOW_COPY_AND_ASSIGN(ChromeContentBrowserClient);
185 }; 185 };
186 186
187 } // namespace chrome 187 } // namespace chrome
188 188
189 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_ 189 #endif // CHROME_BROWSER_CHROME_CONTENT_BROWSER_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/app/nibs/SpeechRecognitionBubble.xib ('k') | chrome/browser/chrome_content_browser_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698