summaryrefslogtreecommitdiff
path: root/www-client/chromium/files/chromium-93-InkDropHost-crash.patch
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-12-13 09:54:31 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-12-13 09:54:31 +0000
commit6f88a77f4451f23b64c7aaa589201d82c20eef49 (patch)
treefe56854ed619d09d1cd0fdf9d26fe016b84e43cb /www-client/chromium/files/chromium-93-InkDropHost-crash.patch
parent75ccb034717864bb8310b71ff2dc62064b4b51b7 (diff)
www-client/chromium : fixed in gentoo, drop from here
Diffstat (limited to 'www-client/chromium/files/chromium-93-InkDropHost-crash.patch')
-rw-r--r--www-client/chromium/files/chromium-93-InkDropHost-crash.patch25
1 files changed, 0 insertions, 25 deletions
diff --git a/www-client/chromium/files/chromium-93-InkDropHost-crash.patch b/www-client/chromium/files/chromium-93-InkDropHost-crash.patch
deleted file mode 100644
index 54d16db5..00000000
--- a/www-client/chromium/files/chromium-93-InkDropHost-crash.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-diff --git a/ui/views/animation/ink_drop_host_view.h b/ui/views/animation/ink_drop_host_view.h
-index bd0975b..e5df288 100644
---- a/ui/views/animation/ink_drop_host_view.h
-+++ b/ui/views/animation/ink_drop_host_view.h
-@@ -238,6 +238,11 @@ class VIEWS_EXPORT InkDropHost {
- // Used to observe View and inform the InkDrop of host-transform changes.
- ViewLayerTransformObserver host_view_transform_observer_;
-
-+ // Declared before |ink_drop_|, because InkDropImpl may call
-+ // RemoveInkDropLayer on partly destructed InkDropHost. In
-+ // that case |ink_drop_mask_| must be still valid.
-+ std::unique_ptr<views::InkDropMask> ink_drop_mask_;
-+
- // Should not be accessed directly. Use GetInkDrop() instead.
- std::unique_ptr<InkDrop> ink_drop_;
-
-@@ -261,8 +266,6 @@ class VIEWS_EXPORT InkDropHost {
- int ink_drop_small_corner_radius_ = 2;
- int ink_drop_large_corner_radius_ = 4;
-
-- std::unique_ptr<views::InkDropMask> ink_drop_mask_;
--
- base::RepeatingCallback<std::unique_ptr<InkDrop>()> create_ink_drop_callback_;
- base::RepeatingCallback<std::unique_ptr<InkDropRipple>()>
- create_ink_drop_ripple_callback_;