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

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: 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
« no previous file with comments | « content/shell/shell_content_browser_client.h ('k') | content/test/test_browser_context.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 265 matching lines...) Expand 10 before | Expand all | Expand 10 after
276 } 276 }
277 277
278 std::string ShellContentBrowserClient::GetWorkerProcessTitle( 278 std::string ShellContentBrowserClient::GetWorkerProcessTitle(
279 const GURL& url, content::ResourceContext* context) { 279 const GURL& url, content::ResourceContext* context) {
280 return std::string(); 280 return std::string();
281 } 281 }
282 282
283 void ShellContentBrowserClient::ResourceDispatcherHostCreated() { 283 void ShellContentBrowserClient::ResourceDispatcherHostCreated() {
284 } 284 }
285 285
286 SpeechInputManagerDelegate* 286 SpeechRecognitionManagerDelegate*
287 ShellContentBrowserClient::GetSpeechInputManagerDelegate() { 287 ShellContentBrowserClient::GetSpeechRecognitionManagerDelegate() {
288 return NULL; 288 return NULL;
289 } 289 }
290 290
291 ui::Clipboard* ShellContentBrowserClient::GetClipboard() { 291 ui::Clipboard* ShellContentBrowserClient::GetClipboard() {
292 return shell_browser_main_parts_->GetClipboard(); 292 return shell_browser_main_parts_->GetClipboard();
293 } 293 }
294 294
295 net::NetLog* ShellContentBrowserClient::GetNetLog() { 295 net::NetLog* ShellContentBrowserClient::GetNetLog() {
296 return NULL; 296 return NULL;
297 } 297 }
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
353 #endif 353 #endif
354 354
355 #if defined(USE_NSS) 355 #if defined(USE_NSS)
356 crypto::CryptoModuleBlockingPasswordDelegate* 356 crypto::CryptoModuleBlockingPasswordDelegate*
357 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { 357 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) {
358 return NULL; 358 return NULL;
359 } 359 }
360 #endif 360 #endif
361 361
362 } // namespace content 362 } // namespace content
OLDNEW
« no previous file with comments | « content/shell/shell_content_browser_client.h ('k') | content/test/test_browser_context.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698