• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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_WIN_H_
6 #define CEF_LIBCEF_BROWSER_OSR_BROWSER_PLATFORM_DELEGATE_OSR_WIN_H_
7 
8 #include "libcef/browser/osr/browser_platform_delegate_osr.h"
9 
10 // Windowless browser implementation for Windows.
11 class CefBrowserPlatformDelegateOsrWin : public CefBrowserPlatformDelegateOsr {
12  public:
13   explicit CefBrowserPlatformDelegateOsrWin(
14       std::unique_ptr<CefBrowserPlatformDelegateNative> native_delegate,
15       bool use_shared_texture,
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_WIN_H_
23