| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |