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

Unified Diff: Source/web/ColorChooserPopupUIController.cpp

Issue 631833002: Move color chooser objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Safer finalization 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/web/ColorChooserPopupUIController.cpp
diff --git a/Source/web/ColorChooserPopupUIController.cpp b/Source/web/ColorChooserPopupUIController.cpp
index c2bb507f2ccfc29d360dee903b3e70947683dde3..8f4da5db27266085442796a562a054e55a9a4340 100644
--- a/Source/web/ColorChooserPopupUIController.cpp
+++ b/Source/web/ColorChooserPopupUIController.cpp
@@ -55,6 +55,14 @@ ColorChooserPopupUIController::ColorChooserPopupUIController(LocalFrame* frame,
ColorChooserPopupUIController::~ColorChooserPopupUIController()
{
+ closePopup();
+ // ~ColorChooserUIController ends the ColorChooser.
+}
+
+void ColorChooserPopupUIController::trace(Visitor* visitor)
+{
+ visitor->trace(m_client);
+ ColorChooserUIController::trace(visitor);
}
void ColorChooserPopupUIController::openUI()
@@ -69,8 +77,8 @@ void ColorChooserPopupUIController::endChooser()
{
if (m_chooser)
m_chooser->endChooser();
- if (m_popup)
- closePopup();
+
+ closePopup();
}
AXObject* ColorChooserPopupUIController::rootAXObject()

Powered by Google App Engine
This is Rietveld 408576698