1 // Copyright 2015 The Chromium Embedded Framework Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CEF_LIBCEF_BROWSER_OSR_BROWSER_PLATFORM_DELEGATE_OSR_LINUX_H_ 6 #define CEF_LIBCEF_BROWSER_OSR_BROWSER_PLATFORM_DELEGATE_OSR_LINUX_H_ 7 8 #include "libcef/browser/osr/browser_platform_delegate_osr.h" 9 10 // Windowless browser implementation for Linux. 11 class CefBrowserPlatformDelegateOsrLinux 12 : public CefBrowserPlatformDelegateOsr { 13 public: 14 CefBrowserPlatformDelegateOsrLinux( 15 std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate, 16 bool use_external_begin_frame); 17 18 // CefBrowserPlatformDelegate methods: 19 CefWindowHandle GetHostWindowHandle() const override; 20 }; 21 22 #endif // CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_OSR_LINUX_H_ 23