| 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 "ui/gfx/image/image_skia.h" | 9 #include "ui/gfx/image/image_skia.h" |
| 10 #include "url/gurl.h" | 10 #include "url/gurl.h" |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 344 #endif | 344 #endif |
| 345 | 345 |
| 346 #if defined(VIDEO_HOLE) | 346 #if defined(VIDEO_HOLE) |
| 347 ExternalVideoSurfaceContainer* | 347 ExternalVideoSurfaceContainer* |
| 348 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 348 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 349 WebContents* web_contents) { | 349 WebContents* web_contents) { |
| 350 return nullptr; | 350 return nullptr; |
| 351 } | 351 } |
| 352 #endif | 352 #endif |
| 353 | 353 |
| 354 void ContentBrowserClient::ConfigureMojoShell(MojoShellContext* context) { |
| 355 } |
| 356 |
| 354 } // namespace content | 357 } // namespace content |
| OLD | NEW |