Title: [186128] trunk/Source/WebCore
Revision
186128
Author
[email protected]
Date
2015-06-30 13:03:28 -0700 (Tue, 30 Jun 2015)

Log Message

Addressing post-review comments in r185916

* platform/LayoutUnit.h:
(WebCore::roundToDevicePixel):

Modified Paths

Diff

Modified: trunk/Source/WebCore/ChangeLog (186127 => 186128)


--- trunk/Source/WebCore/ChangeLog	2015-06-30 19:53:18 UTC (rev 186127)
+++ trunk/Source/WebCore/ChangeLog	2015-06-30 20:03:28 UTC (rev 186128)
@@ -1,3 +1,10 @@
+2015-06-30  Zalan Bujtas  <[email protected]>
+
+        Addressing post-review comments in r185916
+
+        * platform/LayoutUnit.h:
+        (WebCore::roundToDevicePixel):
+
 2015-06-30  Matt Rajca  <[email protected]>
 
         MediaSession: Use setSessionInternal to set the default media session in HTMLMediaElement's constructor

Modified: trunk/Source/WebCore/platform/LayoutUnit.h (186127 => 186128)


--- trunk/Source/WebCore/platform/LayoutUnit.h	2015-06-30 19:53:18 UTC (rev 186127)
+++ trunk/Source/WebCore/platform/LayoutUnit.h	2015-06-30 20:03:28 UTC (rev 186128)
@@ -872,7 +872,7 @@
     return value.floor();
 }
 
-inline float roundToDevicePixel(LayoutUnit value, const float pixelSnappingFactor, bool needsDirectionalRounding = false)
+inline float roundToDevicePixel(LayoutUnit value, float pixelSnappingFactor, bool needsDirectionalRounding = false)
 {
     double valueToRound = value.toDouble();
     if (needsDirectionalRounding)
_______________________________________________
webkit-changes mailing list
[email protected]
https://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to