| 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 "content/public/browser/client_certificate_delegate.h" | 8 #include "content/public/browser/client_certificate_delegate.h" |
| 9 #include "content/public/common/sandbox_type.h" | 9 #include "content/public/common/sandbox_type.h" |
| 10 #include "ui/gfx/image/image_skia.h" | 10 #include "ui/gfx/image/image_skia.h" |
| (...skipping 295 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 306 | 306 |
| 307 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( | 307 ui::SelectFilePolicy* ContentBrowserClient::CreateSelectFilePolicy( |
| 308 WebContents* web_contents) { | 308 WebContents* web_contents) { |
| 309 return nullptr; | 309 return nullptr; |
| 310 } | 310 } |
| 311 | 311 |
| 312 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { | 312 LocationProvider* ContentBrowserClient::OverrideSystemLocationProvider() { |
| 313 return nullptr; | 313 return nullptr; |
| 314 } | 314 } |
| 315 | 315 |
| 316 storage::QuotaEvictionPolicy* |
| 317 ContentBrowserClient::GetTemporaryStorageEvictionPolicy( |
| 318 BrowserContext* browser_context) { |
| 319 return nullptr; |
| 320 } |
| 321 |
| 316 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { | 322 DevToolsManagerDelegate* ContentBrowserClient::GetDevToolsManagerDelegate() { |
| 317 return nullptr; | 323 return nullptr; |
| 318 } | 324 } |
| 319 | 325 |
| 320 TracingDelegate* ContentBrowserClient::GetTracingDelegate() { | 326 TracingDelegate* ContentBrowserClient::GetTracingDelegate() { |
| 321 return nullptr; | 327 return nullptr; |
| 322 } | 328 } |
| 323 | 329 |
| 324 bool ContentBrowserClient::IsNPAPIEnabled() { | 330 bool ContentBrowserClient::IsNPAPIEnabled() { |
| 325 return false; | 331 return false; |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 369 #if defined(VIDEO_HOLE) | 375 #if defined(VIDEO_HOLE) |
| 370 ExternalVideoSurfaceContainer* | 376 ExternalVideoSurfaceContainer* |
| 371 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 377 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 372 WebContents* web_contents) { | 378 WebContents* web_contents) { |
| 373 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348."; | 379 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348."; |
| 374 return nullptr; | 380 return nullptr; |
| 375 } | 381 } |
| 376 #endif | 382 #endif |
| 377 | 383 |
| 378 } // namespace content | 384 } // namespace content |
| OLD | NEW |