mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	- Add CefWindowInfo::shared_texture_enabled and CefRenderHandler::OnAcceleratedPaint for shared texture support. Currently only supported on Windows (D3D11). - Add CefWindowInfo::external_begin_frame_enabled and CefBrowserHost::SendExternalBeginFrame for external begin frame support.
		
			
				
	
	
		
			59 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			59 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			C++
		
	
	
	
	
	
| // 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.
 | |
| 
 | |
| #ifndef CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_H_
 | |
| #define CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_H_
 | |
| 
 | |
| #include "libcef/browser/browser_platform_delegate.h"
 | |
| 
 | |
| // Base implementation of native browser functionality.
 | |
| class CefBrowserPlatformDelegateNative : public CefBrowserPlatformDelegate {
 | |
|  public:
 | |
|   // Used by the windowless implementation to override specific functionality
 | |
|   // when delegating to the native implementation.
 | |
|   class WindowlessHandler {
 | |
|    public:
 | |
|     // Returns the parent window handle.
 | |
|     virtual CefWindowHandle GetParentWindowHandle() const = 0;
 | |
| 
 | |
|     // Convert from view coordinates to screen coordinates.
 | |
|     virtual gfx::Point GetParentScreenPoint(const gfx::Point& view) const = 0;
 | |
| 
 | |
|    protected:
 | |
|     virtual ~WindowlessHandler() {}
 | |
|   };
 | |
| 
 | |
|   // CefBrowserPlatformDelegate methods:
 | |
|   bool CanUseSharedTexture() const override;
 | |
|   bool CanUseExternalBeginFrame() const override;
 | |
|   SkColor GetBackgroundColor() const override;
 | |
|   void SynchronizeVisualProperties() override;
 | |
|   void SendKeyEvent(const content::NativeWebKeyboardEvent& event) override;
 | |
|   void SendMouseEvent(const blink::WebMouseEvent& event) override;
 | |
|   void SendMouseWheelEvent(const blink::WebMouseWheelEvent& event) override;
 | |
|   bool IsWindowless() const override;
 | |
|   bool IsViewsHosted() const override;
 | |
| 
 | |
|   const CefWindowInfo& window_info() const { return window_info_; }
 | |
| 
 | |
|   void set_windowless_handler(WindowlessHandler* handler) {
 | |
|     windowless_handler_ = handler;
 | |
|   }
 | |
| 
 | |
|  protected:
 | |
|   CefBrowserPlatformDelegateNative(const CefWindowInfo& window_info,
 | |
|                                    SkColor background_color,
 | |
|                                    bool use_shared_texture,
 | |
|                                    bool use_external_begin_frame);
 | |
| 
 | |
|   CefWindowInfo window_info_;
 | |
|   const SkColor background_color_;
 | |
|   const bool use_shared_texture_;
 | |
|   const bool use_external_begin_frame_;
 | |
| 
 | |
|   WindowlessHandler* windowless_handler_;  // Not owned by this object.
 | |
| };
 | |
| 
 | |
| #endif  // CEF_LIBCEF_BROWSER_NATIVE_BROWSER_PLATFORM_DELEGATE_NATIVE_H_
 |