Title: [99412] trunk/Source/WebCore
Revision
99412
Author
[email protected]
Date
2011-11-07 05:46:37 -0800 (Mon, 07 Nov 2011)

Log Message

CSSPrimitiveValue: Remove unused virtual function parseString().
<http://webkit.org/b/71671>

Reviewed by Antti Koivisto.

* css/CSSPrimitiveValue.cpp:
* css/CSSPrimitiveValue.h:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (99411 => 99412)


--- trunk/Source/WebCore/ChangeLog	2011-11-07 13:43:17 UTC (rev 99411)
+++ trunk/Source/WebCore/ChangeLog	2011-11-07 13:46:37 UTC (rev 99412)
@@ -1,3 +1,13 @@
+2011-11-07  Andreas Kling  <[email protected]>
+
+        CSSPrimitiveValue: Remove unused virtual function parseString().
+        <http://webkit.org/b/71671>
+
+        Reviewed by Antti Koivisto.
+
+        * css/CSSPrimitiveValue.cpp:
+        * css/CSSPrimitiveValue.h:
+
 2011-11-07  Andrey Kosyakov  <[email protected]>
 
         Web Inspector: use toString as the Date object description.

Modified: trunk/Source/WebCore/css/CSSPrimitiveValue.cpp (99411 => 99412)


--- trunk/Source/WebCore/css/CSSPrimitiveValue.cpp	2011-11-07 13:43:17 UTC (rev 99411)
+++ trunk/Source/WebCore/css/CSSPrimitiveValue.cpp	2011-11-07 13:46:37 UTC (rev 99412)
@@ -670,12 +670,6 @@
     return m_value.pair;
 }
 
-bool CSSPrimitiveValue::parseString(const String& /*string*/, bool /*strict*/)
-{
-    // FIXME
-    return false;
-}
-
 int CSSPrimitiveValue::getIdent() const
 {
     if (m_type != CSS_IDENT)

Modified: trunk/Source/WebCore/css/CSSPrimitiveValue.h (99411 => 99412)


--- trunk/Source/WebCore/css/CSSPrimitiveValue.h	2011-11-07 13:43:17 UTC (rev 99411)
+++ trunk/Source/WebCore/css/CSSPrimitiveValue.h	2011-11-07 13:46:37 UTC (rev 99412)
@@ -207,7 +207,6 @@
     int getIdent() const;
     template<typename T> inline operator T() const; // Defined in CSSPrimitiveValueMappings.h
 
-    virtual bool parseString(const String&, bool = false);
     virtual String cssText() const;
 
     bool isQuirkValue() { return m_isQuirkValue; }
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes

Reply via email to