mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-06-05 21:39:12 +02:00
Update to Chromium revision d483fb77 (#474934)
- CefLifeSpanHandler::OnBeforePopup is now called on the UI thread. - Remove CefBrowserSettings.javascript_open_windows which is no longer supported.
This commit is contained in:
@@ -1,17 +1,15 @@
|
||||
diff --git base/supports_user_data.h base/supports_user_data.h
|
||||
index 233ce38..02e690b 100644
|
||||
index 56522e2..b945297 100644
|
||||
--- base/supports_user_data.h
|
||||
+++ base/supports_user_data.h
|
||||
@@ -39,10 +39,10 @@ class BASE_EXPORT SupportsUserData {
|
||||
@@ -37,9 +37,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.
|
||||
// TODO: remove the raw ptr version of SetUserData once everything uses
|
||||
// the unique_ptr version, see crbug.com/690937.
|
||||
- Data* GetUserData(const void* key) const;
|
||||
- void SetUserData(const void* key, Data* data);
|
||||
- void SetUserData(const void* key, std::unique_ptr<Data> data);
|
||||
- void RemoveUserData(const void* key);
|
||||
+ virtual Data* GetUserData(const void* key) const;
|
||||
+ virtual void SetUserData(const void* key, Data* data);
|
||||
+ virtual void SetUserData(const void* key, std::unique_ptr<Data> data);
|
||||
+ virtual void RemoveUserData(const void* key);
|
||||
|
||||
|
Reference in New Issue
Block a user