mirror of
				https://bitbucket.org/chromiumembedded/cef
				synced 2025-06-05 21:39:12 +02:00 
			
		
		
		
	- Remove |accept_lang| parameter from CefJSDialogHandler::OnJSDialog and CefFormatUrlForSecurityDisplay (see https://crbug.com/336973#c36). - Remove remaining NPAPI-related code including functions from cef_web_plugin.h (see https://crbug.com/493212#c55). - Mac: 10.7+ deployment target is now required for client applications. - Mac: Remove CefBrowserHost::SetWindowVisibility (issue #1375). No replacement is required for windowed rendering. Use WasHidden for off-screen rendering. - Windows: Visual Studio 2015 Update 2 is now required when building CEF/Chromium.
		
			
				
	
	
		
			18 lines
		
	
	
		
			854 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			854 B
		
	
	
	
		
			Diff
		
	
	
	
	
	
| diff --git supports_user_data.h supports_user_data.h
 | |
| index a9f1c93..48d88fa 100644
 | |
| --- supports_user_data.h
 | |
| +++ supports_user_data.h
 | |
| @@ -33,9 +33,9 @@ class BASE_EXPORT SupportsUserData {
 | |
|    // Multiple user data values can be stored under different keys.
 | |
|    // This object will TAKE OWNERSHIP of the given data pointer, and will
 | |
|    // delete the object if it is changed or the object is destroyed.
 | |
| -  Data* GetUserData(const void* key) const;
 | |
| -  void SetUserData(const void* key, Data* data);
 | |
| -  void RemoveUserData(const void* key);
 | |
| +  virtual Data* GetUserData(const void* key) const;
 | |
| +  virtual void SetUserData(const void* key, Data* data);
 | |
| +  virtual void RemoveUserData(const void* key);
 | |
|  
 | |
|    // SupportsUserData is not thread-safe, and on debug build will assert it is
 | |
|    // only used on one thread. Calling this method allows the caller to hand
 |