| 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 "ui/gfx/image/image_skia.h" | 8 #include "ui/gfx/image/image_skia.h" |
| 9 #include "url/gurl.h" | 9 #include "url/gurl.h" |
| 10 | 10 |
| (...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 329 return nullptr; | 329 return nullptr; |
| 330 } | 330 } |
| 331 | 331 |
| 332 bool ContentBrowserClient::CheckMediaAccessPermission( | 332 bool ContentBrowserClient::CheckMediaAccessPermission( |
| 333 BrowserContext* browser_context, | 333 BrowserContext* browser_context, |
| 334 const GURL& security_origin, | 334 const GURL& security_origin, |
| 335 MediaStreamType type) { | 335 MediaStreamType type) { |
| 336 return false; | 336 return false; |
| 337 } | 337 } |
| 338 | 338 |
| 339 WebContents* ContentBrowserClient::OpenURL(BrowserContext* browser_context, |
| 340 const OpenURLParams& params) { |
| 341 return nullptr; |
| 342 } |
| 343 |
| 339 #if defined(OS_WIN) | 344 #if defined(OS_WIN) |
| 340 const wchar_t* ContentBrowserClient::GetResourceDllName() { | 345 const wchar_t* ContentBrowserClient::GetResourceDllName() { |
| 341 return nullptr; | 346 return nullptr; |
| 342 } | 347 } |
| 343 #endif | 348 #endif |
| 344 | 349 |
| 345 #if defined(VIDEO_HOLE) | 350 #if defined(VIDEO_HOLE) |
| 346 ExternalVideoSurfaceContainer* | 351 ExternalVideoSurfaceContainer* |
| 347 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 352 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 348 WebContents* web_contents) { | 353 WebContents* web_contents) { |
| 349 return nullptr; | 354 return nullptr; |
| 350 } | 355 } |
| 351 #endif | 356 #endif |
| 352 | 357 |
| 353 } // namespace content | 358 } // namespace content |
| OLD | NEW |