Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(955)

Unified Diff: Source/core/html/forms/ColorInputType.cpp

Issue 631833002: Move color chooser objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Make ColorChooserUIController::m_client protected, not private Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: Source/core/html/forms/ColorInputType.cpp
diff --git a/Source/core/html/forms/ColorInputType.cpp b/Source/core/html/forms/ColorInputType.cpp
index 3edd2dead5a76c7375d62458d16633f54add6907..54ab45aa143171d0906f7a8d4d7690a6eddcf2e9 100644
--- a/Source/core/html/forms/ColorInputType.cpp
+++ b/Source/core/html/forms/ColorInputType.cpp
@@ -82,7 +82,20 @@ PassRefPtrWillBeRawPtr<InputType> ColorInputType::create(HTMLInputElement& eleme
ColorInputType::~ColorInputType()
{
- endColorChooser();
+ // The ColorChooser is responsible for 'ending' its own platform
+ // object when being destructed, but will not indirectly notify
+ // its ColorChooserClient when doing so (Oilpan friendly finalization.)
haraken 2014/10/07 08:27:35 Hmm, this looks a bit weird. Can we either: - mak
sof 2014/10/07 08:31:45 That sounds needlessly complicated. Should we simp
haraken 2014/10/07 08:49:27 I'm not sure. If it's OK to not dispatch the event
+ //
+ // So as to not miss out on anything, effect that notification locally.
+ if (m_chooser)
+ didEndChooser();
haraken 2014/10/07 08:27:35 Is it safe to dispatch an event inside the destruc
+}
+
+void ColorInputType::trace(Visitor* visitor)
+{
+ visitor->trace(m_chooser);
+ BaseClickableWithKeyInputType::trace(visitor);
+ ColorChooserClient::trace(visitor);
}
void ColorInputType::countUsage()

Powered by Google App Engine
This is Rietveld 408576698