mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	
		
			
				
	
	
		
			28 lines
		
	
	
		
			998 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			998 B
		
	
	
	
		
			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.
 | |
| 
 | |
| #include "libcef/browser/native/browser_platform_delegate_native.h"
 | |
| 
 | |
| #include "libcef/browser/alloy/alloy_browser_host_impl.h"
 | |
| 
 | |
| #include "content/public/browser/render_view_host.h"
 | |
| #include "content/public/browser/render_widget_host.h"
 | |
| #include "third_party/blink/public/common/input/web_mouse_event.h"
 | |
| 
 | |
| CefBrowserPlatformDelegateNative::CefBrowserPlatformDelegateNative(
 | |
|     const CefWindowInfo& window_info,
 | |
|     SkColor background_color)
 | |
|     : window_info_(window_info), background_color_(background_color) {}
 | |
| 
 | |
| SkColor CefBrowserPlatformDelegateNative::GetBackgroundColor() const {
 | |
|   return background_color_;
 | |
| }
 | |
| 
 | |
| void CefBrowserPlatformDelegateNative::WasResized() {
 | |
|   content::RenderViewHost* host = web_contents_->GetRenderViewHost();
 | |
|   if (host) {
 | |
|     host->GetWidget()->SynchronizeVisualProperties();
 | |
|   }
 | |
| }
 |