2015-11-17 19:20:13 +01:00
|
|
|
// Copyright 2015 The Chromium Embedded Framework Authors. All rights reserved.
|
|
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
|
|
// found in the LICENSE file.
|
|
|
|
|
2024-04-30 17:45:07 +02:00
|
|
|
#include "cef/libcef/browser/osr/browser_platform_delegate_osr_linux.h"
|
2015-11-17 19:20:13 +01:00
|
|
|
|
2016-01-06 20:20:54 +01:00
|
|
|
#include <utility>
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
CefBrowserPlatformDelegateOsrLinux::CefBrowserPlatformDelegateOsrLinux(
|
2020-07-04 20:21:34 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate,
|
2024-03-08 13:44:56 +01:00
|
|
|
bool use_shared_texture,
|
2020-07-04 20:21:34 +02:00
|
|
|
bool use_external_begin_frame)
|
|
|
|
: CefBrowserPlatformDelegateOsr(std::move(native_delegate),
|
2024-03-08 13:44:56 +01:00
|
|
|
use_shared_texture,
|
2020-07-04 20:21:34 +02:00
|
|
|
use_external_begin_frame) {}
|
2015-11-17 19:20:13 +01:00
|
|
|
|
2017-05-17 11:29:28 +02:00
|
|
|
CefWindowHandle CefBrowserPlatformDelegateOsrLinux::GetHostWindowHandle()
|
|
|
|
const {
|
2015-11-17 19:20:13 +01:00
|
|
|
return native_delegate_->window_info().parent_window;
|
|
|
|
}
|