Title: [106624] trunk/Source/WebCore
Revision
106624
Author
[email protected]
Date
2012-02-02 21:14:40 -0800 (Thu, 02 Feb 2012)

Log Message

Remove OVERRIDE from ColorInputType::valueAsColor
https://bugs.webkit.org/show_bug.cgi?id=77701

Reviewed by Kent Tamura.

* html/ColorInputType.h:
(WebCore::ColorInputType::valueAsColor):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (106623 => 106624)


--- trunk/Source/WebCore/ChangeLog	2012-02-03 04:51:18 UTC (rev 106623)
+++ trunk/Source/WebCore/ChangeLog	2012-02-03 05:14:40 UTC (rev 106624)
@@ -1,3 +1,13 @@
+2012-02-02  Keishi Hattori  <[email protected]>
+
+        Remove OVERRIDE from ColorInputType::valueAsColor
+        https://bugs.webkit.org/show_bug.cgi?id=77701
+
+        Reviewed by Kent Tamura.
+
+        * html/ColorInputType.h:
+        (WebCore::ColorInputType::valueAsColor):
+
 2012-02-02  Bear Travis  <[email protected]>
 
         Support 'disabled' attribute on SVGStyleElement

Modified: trunk/Source/WebCore/html/ColorInputType.h (106623 => 106624)


--- trunk/Source/WebCore/html/ColorInputType.h	2012-02-03 04:51:18 UTC (rev 106623)
+++ trunk/Source/WebCore/html/ColorInputType.h	2012-02-03 05:14:40 UTC (rev 106624)
@@ -54,12 +54,12 @@
     virtual bool supportsRequired() const OVERRIDE;
     virtual String fallbackValue() const OVERRIDE;
     virtual String sanitizeValue(const String&) const OVERRIDE;
-    virtual Color valueAsColor() const OVERRIDE;
     virtual void createShadowSubtree() OVERRIDE;
     virtual void setValue(const String&, bool valueChanged, bool sendChangeEvent) OVERRIDE;
     virtual void handleDOMActivateEvent(Event*) OVERRIDE;
     virtual void detach() OVERRIDE;
 
+    Color valueAsColor() const;
     void endColorChooser();
     void updateColorSwatch();
     HTMLElement* shadowColorSwatch() const;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to