Title: [117867] trunk/Source/WebKit/chromium
- Revision
- 117867
- Author
- [email protected]
- Date
- 2012-05-21 18:49:38 -0700 (Mon, 21 May 2012)
Log Message
Chromium compile fix, unreviewed.
Fixed is defined in WebCore and is a typedef in the OS X 10.5 SDK headers, so it needs an explicit WebCore::
prefix to be unambiguous on mac.
* tests/FilterOperationsTest.cpp:
(WebKit::TEST):
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (117866 => 117867)
--- trunk/Source/WebKit/chromium/ChangeLog 2012-05-22 01:45:24 UTC (rev 117866)
+++ trunk/Source/WebKit/chromium/ChangeLog 2012-05-22 01:49:38 UTC (rev 117867)
@@ -1,5 +1,15 @@
2012-05-21 James Robinson <[email protected]>
+ Chromium compile fix, unreviewed.
+
+ Fixed is defined in WebCore and is a typedef in the OS X 10.5 SDK headers, so it needs an explicit WebCore::
+ prefix to be unambiguous on mac.
+
+ * tests/FilterOperationsTest.cpp:
+ (WebKit::TEST):
+
+2012-05-21 James Robinson <[email protected]>
+
[chromium] Port chromium compositor to use WebFilterOperation(s)
https://bugs.webkit.org/show_bug.cgi?id=87046
Modified: trunk/Source/WebKit/chromium/tests/FilterOperationsTest.cpp (117866 => 117867)
--- trunk/Source/WebKit/chromium/tests/FilterOperationsTest.cpp 2012-05-22 01:45:24 UTC (rev 117866)
+++ trunk/Source/WebKit/chromium/tests/FilterOperationsTest.cpp 2012-05-22 01:49:38 UTC (rev 117867)
@@ -38,7 +38,7 @@
TEST(FilterOperationsTest, getOutsetsBlur)
{
FilterOperations ops;
- ops.operations().append(BlurFilterOperation::create(Length(20.0, Fixed), FilterOperation::BLUR));
+ ops.operations().append(BlurFilterOperation::create(Length(20.0, WebCore::Fixed), FilterOperation::BLUR));
EXPECT_TRUE(ops.hasOutsets());
int top, right, bottom, left;
top = right = bottom = left = 0;
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes