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.
|
|
|
|
|
|
|
|
#include "libcef/browser/osr/browser_platform_delegate_osr_linux.h"
|
|
|
|
|
2016-01-06 20:20:54 +01:00
|
|
|
#include <utility>
|
|
|
|
|
2015-11-17 19:20:13 +01:00
|
|
|
#include "libcef/browser/browser_host_impl.h"
|
|
|
|
|
|
|
|
CefBrowserPlatformDelegateOsrLinux::CefBrowserPlatformDelegateOsrLinux(
|
2016-04-27 22:38:52 +02:00
|
|
|
std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate)
|
2017-05-17 11:29:28 +02:00
|
|
|
: CefBrowserPlatformDelegateOsr(std::move(native_delegate)) {}
|
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;
|
|
|
|
}
|