Title: [165642] trunk/Source/WebCore
Revision
165642
Author
rn...@webkit.org
Date
2014-03-14 13:43:19 -0700 (Fri, 14 Mar 2014)

Log Message

Remove an unused function fix builds.

* platform/mac/HTMLConverter.mm:

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (165641 => 165642)


--- trunk/Source/WebCore/ChangeLog	2014-03-14 20:33:44 UTC (rev 165641)
+++ trunk/Source/WebCore/ChangeLog	2014-03-14 20:43:19 UTC (rev 165642)
@@ -1,3 +1,9 @@
+2014-03-14  Ryosuke Niwa  <rn...@webkit.org>
+
+        Remove an unused function fix builds.
+
+        * platform/mac/HTMLConverter.mm:
+
 2014-03-14  Frédéric Wang  <fred.w...@free.fr>
 
         FontCache: Replace DEPRECATED_DEFINE_STATIC_LOCAL with static NeverDestroyed<T>.

Modified: trunk/Source/WebCore/platform/mac/HTMLConverter.mm (165641 => 165642)


--- trunk/Source/WebCore/platform/mac/HTMLConverter.mm	2014-03-14 20:33:44 UTC (rev 165641)
+++ trunk/Source/WebCore/platform/mac/HTMLConverter.mm	2014-03-14 20:43:19 UTC (rev 165642)
@@ -759,17 +759,6 @@
     }
 }
 
-static inline BOOL _getFloat(DOMCSSPrimitiveValue *primitiveValue, CGFloat *val)
-{
-    if (!val)
-        return NO;
-    float result;
-    bool haveResult = floatValueFromPrimitiveValue(*core(primitiveValue), result);
-    if (haveResult && val)
-        *val = result;
-    return haveResult;
-}
-
 - (BOOL)_getComputedFloat:(CGFloat *)val forNode:(DOMNode *)node property:(NSString *)key
 {
     bool haveResult = false;
_______________________________________________
webkit-changes mailing list
webkit-changes@lists.webkit.org
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to