Title: [118387] trunk/Source/WebKit/chromium
- Revision
- 118387
- Author
- [email protected]
- Date
- 2012-05-24 10:15:13 -0700 (Thu, 24 May 2012)
Log Message
use built-in data type DashArray
https://bugs.webkit.org/show_bug.cgi?id=87344
Patch by Lu Guanqun <[email protected]> on 2012-05-24
Reviewed by Eric Seidel.
* tests/PlatformContextSkiaTest.cpp:
(WebCore::TEST):
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (118386 => 118387)
--- trunk/Source/WebKit/chromium/ChangeLog 2012-05-24 17:02:40 UTC (rev 118386)
+++ trunk/Source/WebKit/chromium/ChangeLog 2012-05-24 17:15:13 UTC (rev 118387)
@@ -1,3 +1,13 @@
+2012-05-24 Lu Guanqun <[email protected]>
+
+ use built-in data type DashArray
+ https://bugs.webkit.org/show_bug.cgi?id=87344
+
+ Reviewed by Eric Seidel.
+
+ * tests/PlatformContextSkiaTest.cpp:
+ (WebCore::TEST):
+
2012-05-24 Mark Pilgrim <[email protected]>
[Chromium] Move queryLocalizedString to Platform.h
Modified: trunk/Source/WebKit/chromium/tests/PlatformContextSkiaTest.cpp (118386 => 118387)
--- trunk/Source/WebKit/chromium/tests/PlatformContextSkiaTest.cpp 2012-05-24 17:02:40 UTC (rev 118386)
+++ trunk/Source/WebKit/chromium/tests/PlatformContextSkiaTest.cpp 2012-05-24 17:15:13 UTC (rev 118387)
@@ -724,7 +724,7 @@
context.setStrokeStyle(SolidStroke);
// Make skia unable to compute fast bounds for our paths.
- Vector<float> dashArray;
+ DashArray dashArray;
dashArray.append(1);
dashArray.append(0);
context.setLineDash(dashArray, 0);
@@ -771,7 +771,7 @@
context.setStrokeStyle(SolidStroke);
// Make skia unable to compute fast bounds for our paths.
- Vector<float> dashArray;
+ DashArray dashArray;
dashArray.append(1);
dashArray.append(0);
context.setLineDash(dashArray, 0);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes