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

Unified Diff: Source/core/html/forms/ColorChooser.h

Issue 631833002: Move color chooser objects to the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Keep ~ColorInputType empty 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
« no previous file with comments | « no previous file | Source/core/html/forms/ColorChooserClient.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/forms/ColorChooser.h
diff --git a/Source/core/html/forms/ColorChooser.h b/Source/core/html/forms/ColorChooser.h
index ad39c1c0ff5b8dacaa463363dd3a0d3125676abe..f5e2abef1019e59e9f515989cd25ae0a25edccfe 100644
--- a/Source/core/html/forms/ColorChooser.h
+++ b/Source/core/html/forms/ColorChooser.h
@@ -30,15 +30,18 @@
#ifndef ColorChooser_h
#define ColorChooser_h
+#include "platform/heap/Handle.h"
+
namespace blink {
class AXObject;
class Color;
-class ColorChooser {
+class ColorChooser : public WillBeGarbageCollectedMixin {
public:
ColorChooser();
virtual ~ColorChooser();
+ virtual void trace(Visitor*) { }
virtual void setSelectedColor(const Color&) { }
virtual void endChooser() { }
« no previous file with comments | « no previous file | Source/core/html/forms/ColorChooserClient.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698