Title: [106625] trunk/Source/WebCore
- Revision
- 106625
- Author
- [email protected]
- Date
- 2012-02-02 21:26:17 -0800 (Thu, 02 Feb 2012)
Log Message
ColorChooserClient is missing a virtual destructor
https://bugs.webkit.org/show_bug.cgi?id=77698
Reviewed by Kent Tamura.
* platform/ColorChooserClient.h:
(WebCore::ColorChooserClient::~ColorChooserClient): Added.
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (106624 => 106625)
--- trunk/Source/WebCore/ChangeLog 2012-02-03 05:14:40 UTC (rev 106624)
+++ trunk/Source/WebCore/ChangeLog 2012-02-03 05:26:17 UTC (rev 106625)
@@ -1,5 +1,15 @@
2012-02-02 Keishi Hattori <[email protected]>
+ ColorChooserClient is missing a virtual destructor
+ https://bugs.webkit.org/show_bug.cgi?id=77698
+
+ Reviewed by Kent Tamura.
+
+ * platform/ColorChooserClient.h:
+ (WebCore::ColorChooserClient::~ColorChooserClient): Added.
+
+2012-02-02 Keishi Hattori <[email protected]>
+
Remove OVERRIDE from ColorInputType::valueAsColor
https://bugs.webkit.org/show_bug.cgi?id=77701
Modified: trunk/Source/WebCore/platform/ColorChooserClient.h (106624 => 106625)
--- trunk/Source/WebCore/platform/ColorChooserClient.h 2012-02-03 05:14:40 UTC (rev 106624)
+++ trunk/Source/WebCore/platform/ColorChooserClient.h 2012-02-03 05:26:17 UTC (rev 106625)
@@ -13,6 +13,8 @@
class ColorChooserClient {
public:
+ virtual ~ColorChooserClient() { }
+
virtual void didChooseColor(const Color&) = 0;
virtual void didEndChooser() = 0;
};
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes