| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 | 421 |
| 422 #if defined(VIDEO_HOLE) | 422 #if defined(VIDEO_HOLE) |
| 423 ExternalVideoSurfaceContainer* | 423 ExternalVideoSurfaceContainer* |
| 424 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( | 424 ContentBrowserClient::OverrideCreateExternalVideoSurfaceContainer( |
| 425 WebContents* web_contents) { | 425 WebContents* web_contents) { |
| 426 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348."; | 426 NOTREACHED() << "Hole-punching is not supported. See crbug.com/469348."; |
| 427 return nullptr; | 427 return nullptr; |
| 428 } | 428 } |
| 429 #endif | 429 #endif |
| 430 | 430 |
| 431 std::unique_ptr<base::Value> ContentBrowserClient::GetServiceManifestOverlay( | |
| 432 const std::string& name) { | |
| 433 return nullptr; | |
| 434 } | |
| 435 | |
| 436 | |
| 437 } // namespace content | 431 } // namespace content |
| OLD | NEW |