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 252 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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 Loading... |
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 |
OLD | NEW |