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

Side by Side Diff: content/public/browser/content_browser_client.cc

Issue 12589005: Implement web speech synthesis. (Closed) Base URL: http://git.chromium.org/chromium/src.git@webtts
Patch Set: Fresh update Created 7 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 #include "content/public/browser/content_browser_client.h" 5 #include "content/public/browser/content_browser_client.h"
6 6
7 #include "base/files/file_path.h" 7 #include "base/files/file_path.h"
8 #include "googleurl/src/gurl.h" 8 #include "googleurl/src/gurl.h"
9 #include "ui/gfx/image/image_skia.h" 9 #include "ui/gfx/image/image_skia.h"
10 10
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after
214 std::string ContentBrowserClient::GetWorkerProcessTitle( 214 std::string ContentBrowserClient::GetWorkerProcessTitle(
215 const GURL& url, ResourceContext* context) { 215 const GURL& url, ResourceContext* context) {
216 return std::string(); 216 return std::string();
217 } 217 }
218 218
219 SpeechRecognitionManagerDelegate* 219 SpeechRecognitionManagerDelegate*
220 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() { 220 ContentBrowserClient::GetSpeechRecognitionManagerDelegate() {
221 return NULL; 221 return NULL;
222 } 222 }
223 223
224 TtsDispatcherHostDelegate*
225 ContentBrowserClient::GetTtsDispatcherHostDelegate() {
226 return NULL;
227 }
228
224 net::NetLog* ContentBrowserClient::GetNetLog() { 229 net::NetLog* ContentBrowserClient::GetNetLog() {
225 return NULL; 230 return NULL;
226 } 231 }
227 232
228 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() { 233 AccessTokenStore* ContentBrowserClient::CreateAccessTokenStore() {
229 return NULL; 234 return NULL;
230 } 235 }
231 236
232 bool ContentBrowserClient::IsFastShutdownPossible() { 237 bool ContentBrowserClient::IsFastShutdownPossible() {
233 return true; 238 return true;
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
269 #endif 274 #endif
270 275
271 #if defined(USE_NSS) 276 #if defined(USE_NSS)
272 crypto::CryptoModuleBlockingPasswordDelegate* 277 crypto::CryptoModuleBlockingPasswordDelegate*
273 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 278 ContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
274 return NULL; 279 return NULL;
275 } 280 }
276 #endif 281 #endif
277 282
278 } // namespace content 283 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698