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

Side by Side Diff: content/shell/shell_content_browser_client.cc

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: 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 #include "content/shell/shell_content_browser_client.h" 5 #include "content/shell/shell_content_browser_client.h"
6 6
7 #include "base/command_line.h" 7 #include "base/command_line.h"
8 #include "base/file_path.h" 8 #include "base/file_path.h"
9 #include "content/shell/shell.h" 9 #include "content/shell/shell.h"
10 #include "content/shell/shell_browser_main.h" 10 #include "content/shell/shell_browser_main.h"
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
263 } 263 }
264 264
265 std::string ShellContentBrowserClient::GetWorkerProcessTitle( 265 std::string ShellContentBrowserClient::GetWorkerProcessTitle(
266 const GURL& url, content::ResourceContext* context) { 266 const GURL& url, content::ResourceContext* context) {
267 return std::string(); 267 return std::string();
268 } 268 }
269 269
270 void ShellContentBrowserClient::ResourceDispatcherHostCreated() { 270 void ShellContentBrowserClient::ResourceDispatcherHostCreated() {
271 } 271 }
272 272
273 SpeechInputManagerDelegate* 273 SpeechRecognitionManagerDelegate*
274 ShellContentBrowserClient::GetSpeechInputManagerDelegate() { 274 ShellContentBrowserClient::GetSpeechRecognitionManagerDelegate() {
275 return NULL; 275 return NULL;
276 } 276 }
277 277
278 ui::Clipboard* ShellContentBrowserClient::GetClipboard() { 278 ui::Clipboard* ShellContentBrowserClient::GetClipboard() {
279 return shell_browser_main_parts_->GetClipboard(); 279 return shell_browser_main_parts_->GetClipboard();
280 } 280 }
281 281
282 MHTMLGenerationManager* ShellContentBrowserClient::GetMHTMLGenerationManager() { 282 MHTMLGenerationManager* ShellContentBrowserClient::GetMHTMLGenerationManager() {
283 return NULL; 283 return NULL;
284 } 284 }
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
342 #endif 342 #endif
343 343
344 #if defined(USE_NSS) 344 #if defined(USE_NSS)
345 crypto::CryptoModuleBlockingPasswordDelegate* 345 crypto::CryptoModuleBlockingPasswordDelegate*
346 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 346 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
347 return NULL; 347 return NULL;
348 } 348 }
349 #endif 349 #endif
350 350
351 } // namespace content 351 } // namespace content
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698