| 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 261 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 272 | 272 |
| 273 SpeechInputManagerDelegate* | 273 SpeechInputManagerDelegate* |
| 274 ShellContentBrowserClient::GetSpeechInputManagerDelegate() { | 274 ShellContentBrowserClient::GetSpeechInputManagerDelegate() { |
| 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() { | |
| 283 return NULL; | |
| 284 } | |
| 285 | |
| 286 net::NetLog* ShellContentBrowserClient::GetNetLog() { | 282 net::NetLog* ShellContentBrowserClient::GetNetLog() { |
| 287 return NULL; | 283 return NULL; |
| 288 } | 284 } |
| 289 | 285 |
| 290 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { | 286 AccessTokenStore* ShellContentBrowserClient::CreateAccessTokenStore() { |
| 291 return NULL; | 287 return NULL; |
| 292 } | 288 } |
| 293 | 289 |
| 294 bool ShellContentBrowserClient::IsFastShutdownPossible() { | 290 bool ShellContentBrowserClient::IsFastShutdownPossible() { |
| 295 return true; | 291 return true; |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 342 #endif | 338 #endif |
| 343 | 339 |
| 344 #if defined(USE_NSS) | 340 #if defined(USE_NSS) |
| 345 crypto::CryptoModuleBlockingPasswordDelegate* | 341 crypto::CryptoModuleBlockingPasswordDelegate* |
| 346 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { | 342 ShellContentBrowserClient::GetCryptoPasswordDelegate(const GURL& url) { |
| 347 return NULL; | 343 return NULL; |
| 348 } | 344 } |
| 349 #endif | 345 #endif |
| 350 | 346 |
| 351 } // namespace content | 347 } // namespace content |
| OLD | NEW |