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

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: 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..163d4164e623d267c31ed239d2f663e7b8383c4a 100644
--- a/Source/web/ColorChooserPopupUIController.cpp
+++ b/Source/web/ColorChooserPopupUIController.cpp
@@ -55,6 +55,14 @@ ColorChooserPopupUIController::ColorChooserPopupUIController(LocalFrame* frame,
ColorChooserPopupUIController::~ColorChooserPopupUIController()
haraken 2014/10/07 03:31:29 Can we add ASSERT(!m_popup) ?
sof 2014/10/07 06:35:19 I'm quite likely missing some invariant, but why c
haraken 2014/10/07 06:43:59 Sorry, I was misreading the code. We cannot assume
{
+ endChooser();
tkent 2014/10/07 02:25:00 endChooser() touches m_chooser and m_popup, and bo
haraken 2014/10/07 03:31:29 Both ~ColorChooserPopupUIController and ~ColorChoo
sof 2014/10/07 06:35:19 That changes the order for the popup controller, c
haraken 2014/10/07 06:43:59 Does the order matter? Not related to this CL, it
+ m_chooser = nullptr;
+}
+
+void ColorChooserPopupUIController::trace(Visitor* visitor)
+{
+ visitor->trace(m_client);
+ ColorChooserUIController::trace(visitor);
}
void ColorChooserPopupUIController::openUI()

Powered by Google App Engine
This is Rietveld 408576698