| 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/public/browser/content_browser_client.h" | 5 #include "content/public/browser/content_browser_client.h" |
| 6 | 6 |
| 7 #include "base/files/file_path.h" | 7 #include "base/files/file_path.h" |
| 8 #include "base/guid.h" | 8 #include "base/guid.h" |
| 9 #include "build/build_config.h" | 9 #include "build/build_config.h" |
| 10 #include "content/public/browser/client_certificate_delegate.h" | 10 #include "content/public/browser/client_certificate_delegate.h" |
| (...skipping 289 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 300 | 300 |
| 301 SpeechRecognitionManagerDelegate* | 301 SpeechRecognitionManagerDelegate* |
| 302 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() { | 302 ContentBrowserClient::CreateSpeechRecognitionManagerDelegate() { |
| 303 return nullptr; | 303 return nullptr; |
| 304 } | 304 } |
| 305 | 305 |
| 306 net::NetLog* ContentBrowserClient::GetNetLog() { | 306 net::NetLog* ContentBrowserClient::GetNetLog() { |
| 307 return nullptr; | 307 return nullptr; |
| 308 } | 308 } |
| 309 | 309 |
| 310 bool ContentBrowserClient::IsFastShutdownPossible() { | |
| 311 return true; | |
| 312 } | |
| 313 | |
| 314 base::FilePath ContentBrowserClient::GetDefaultDownloadDirectory() { | 310 base::FilePath ContentBrowserClient::GetDefaultDownloadDirectory() { |
| 315 return base::FilePath(); | 311 return base::FilePath(); |
| 316 } | 312 } |
| 317 | 313 |
| 318 std::string ContentBrowserClient::GetDefaultDownloadName() { | 314 std::string ContentBrowserClient::GetDefaultDownloadName() { |
| 319 return std::string(); | 315 return std::string(); |
| 320 } | 316 } |
| 321 | 317 |
| 322 base::FilePath ContentBrowserClient::GetShaderDiskCacheDirectory() { | 318 base::FilePath ContentBrowserClient::GetShaderDiskCacheDirectory() { |
| 323 return base::FilePath(); | 319 return base::FilePath(); |
| (...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 426 #if defined(VIDEO_HOLE) | 422 #if defined(VIDEO_HOLE) |
| 427 ExternalVideoSurfaceContainer* | 423 ExternalVideoSurfaceContainer* |
| 428 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 424 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 429 WebContents* web_contents) { | 425 WebContents* web_contents) { |
| 430 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348."; | 426 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348."; |
| 431 return nullptr; | 427 return nullptr; |
| 432 } | 428 } |
| 433 #endif | 429 #endif |
| 434 | 430 |
| 435 } // namespace content | 431 } // namespace content |
| OLD | NEW |