mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Add "cef/" prefix for CEF #includes in libcef/ directory. Sort #includes by following https://google.github.io/styleguide/cppguide.html#Names_and_Order_of_Includes
		
			
				
	
	
		
			41 lines
		
	
	
		
			1001 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1001 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // Copyright 2023 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 "cef/libcef/browser/native/cursor_util.h"
 | |
| 
 | |
| #include "cef/include/internal/cef_types_mac.h"
 | |
| #import "ui/base/cocoa/cursor_utils.h"
 | |
| 
 | |
| namespace cursor_util {
 | |
| 
 | |
| namespace {
 | |
| 
 | |
| class ScopedCursorHandleImpl : public ScopedCursorHandle {
 | |
|  public:
 | |
|   explicit ScopedCursorHandleImpl(NSCursor* native_cursor) {
 | |
|     if (native_cursor) {
 | |
|       cursor_ = native_cursor;
 | |
|     }
 | |
|   }
 | |
| 
 | |
|   cef_cursor_handle_t GetCursorHandle() override {
 | |
|     return CAST_NSCURSOR_TO_CEF_CURSOR_HANDLE(cursor_);
 | |
|   }
 | |
| 
 | |
|  private:
 | |
|   NSCursor* __strong cursor_;
 | |
| };
 | |
| 
 | |
| }  // namespace
 | |
| 
 | |
| // static
 | |
| std::unique_ptr<ScopedCursorHandle> ScopedCursorHandle::Create(
 | |
|     CefRefPtr<CefBrowser> /*browser*/,
 | |
|     const ui::Cursor& ui_cursor) {
 | |
|   return std::make_unique<ScopedCursorHandleImpl>(
 | |
|       ui::GetNativeCursor(ui_cursor));
 | |
| }
 | |
| 
 | |
| }  // namespace cursor_util
 |