mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	Remove the legacy off-screen rendering implementation. A new implementation is required (issue #1257).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@1678 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
		@@ -72,7 +72,6 @@ class CefCriticalSection {
 | 
			
		||||
#define CefCursorHandle cef_cursor_handle_t
 | 
			
		||||
#define CefEventHandle cef_event_handle_t
 | 
			
		||||
#define CefWindowHandle cef_window_handle_t
 | 
			
		||||
#define CefTextInputContext cef_text_input_context_t
 | 
			
		||||
 | 
			
		||||
struct CefMainArgsTraits {
 | 
			
		||||
  typedef cef_main_args_t struct_type;
 | 
			
		||||
@@ -120,8 +119,6 @@ struct CefWindowInfoTraits {
 | 
			
		||||
    target->height = src->height;
 | 
			
		||||
    target->hidden = src->hidden;
 | 
			
		||||
    target->parent_view = src->parent_view;
 | 
			
		||||
    target->windowless_rendering_enabled = src->windowless_rendering_enabled;
 | 
			
		||||
    target->transparent_painting_enabled = src->transparent_painting_enabled;
 | 
			
		||||
    target->view = src->view;
 | 
			
		||||
  }
 | 
			
		||||
};
 | 
			
		||||
@@ -147,24 +144,6 @@ class CefWindowInfo : public CefStructBase<CefWindowInfoTraits> {
 | 
			
		||||
    this->height = height;
 | 
			
		||||
    hidden = false;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  ///
 | 
			
		||||
  // Create the browser using windowless (off-screen) rendering. No view
 | 
			
		||||
  // will be created for the browser and all rendering will occur via the
 | 
			
		||||
  // CefRenderHandler interface. The |parent| value will be used to identify
 | 
			
		||||
  // monitor info and to act as the parent view for dialogs, context menus,
 | 
			
		||||
  // etc. If |parent| is not provided then the main screen monitor will be used
 | 
			
		||||
  // and some functionality that requires a parent view may not function
 | 
			
		||||
  // correctly. If |transparent| is true a transparent background color will be
 | 
			
		||||
  // used (RGBA=0x00000000). If |transparent| is false the background will be
 | 
			
		||||
  // white and opaque. In order to create windowless browsers the
 | 
			
		||||
  // CefSettings.windowless_rendering_enabled value must be set to true.
 | 
			
		||||
  ///
 | 
			
		||||
  void SetAsWindowless(CefWindowHandle parent, bool transparent) {
 | 
			
		||||
    windowless_rendering_enabled = true;
 | 
			
		||||
    parent_view = parent;
 | 
			
		||||
    transparent_painting_enabled = transparent;
 | 
			
		||||
  }
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
#endif  // OS_MACOSX
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user