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_MAC_H_ 6 #define CEF_LIBCEF_BROWSER_OSR_BROWSER_PLATFORM_DELEGATE_OSR_MAC_H_ 7 8 #include "libcef/browser/osr/browser_platform_delegate_osr.h" 9 10 // Windowless browser implementation for Mac OS X. 11 class CefBrowserPlatformDelegateOsrMac : public CefBrowserPlatformDelegateOsr { 12 public: 13 explicit CefBrowserPlatformDelegateOsrMac( 14 std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate); 15 16 // CefBrowserPlatformDelegate methods: 17 CefWindowHandle GetHostWindowHandle() const override; 18 }; 19 20 #endif // CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_OSR_MAC_H_ 21