mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-03 20:47:43 +01:00
e7ddc933c9
- 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
|