mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1063853, part 1 - Add a RemoveUserData() method to Moz2D DrawTarget. r=Bas
This commit is contained in:
parent
f49652d629
commit
439a9d464f
@ -985,6 +985,9 @@ public:
|
||||
void *GetUserData(UserDataKey *key) {
|
||||
return mUserData.Get(key);
|
||||
}
|
||||
void *RemoveUserData(UserDataKey *key) {
|
||||
return mUserData.Remove(key);
|
||||
}
|
||||
|
||||
/** Within this rectangle all pixels will be opaque by the time the result of
|
||||
* this DrawTarget is first used for drawing. Either by the underlying surface
|
||||
|
Loading…
Reference in New Issue
Block a user