Title: [111160] trunk/Source/WebKit/chromium
- Revision
- 111160
- Author
- [email protected]
- Date
- 2012-03-19 00:11:31 -0700 (Mon, 19 Mar 2012)
Log Message
[chromium] Fix build that was broken by r111137
Fixed was ambiguous because of MacTypes.h
* tests/CCLayerTreeHostCommonTest.cpp:
(WebCore::addTransformAnimationToLayer):
* tests/CCOcclusionTrackerTest.cpp:
(WebCore::addTransformAnimationToLayer):
Modified Paths
Diff
Modified: trunk/Source/WebKit/chromium/ChangeLog (111159 => 111160)
--- trunk/Source/WebKit/chromium/ChangeLog 2012-03-19 07:01:21 UTC (rev 111159)
+++ trunk/Source/WebKit/chromium/ChangeLog 2012-03-19 07:11:31 UTC (rev 111160)
@@ -1,3 +1,14 @@
+2012-03-19 Keishi Hattori <[email protected]>
+
+ [chromium] Fix build that was broken by r111137
+
+ Fixed was ambiguous because of MacTypes.h
+
+ * tests/CCLayerTreeHostCommonTest.cpp:
+ (WebCore::addTransformAnimationToLayer):
+ * tests/CCOcclusionTrackerTest.cpp:
+ (WebCore::addTransformAnimationToLayer):
+
2012-03-18 Keishi Hattori <[email protected]>
[chromium] Fix test that was broken by r111128
Modified: trunk/Source/WebKit/chromium/tests/CCLayerTreeHostCommonTest.cpp (111159 => 111160)
--- trunk/Source/WebKit/chromium/tests/CCLayerTreeHostCommonTest.cpp 2012-03-19 07:01:21 UTC (rev 111159)
+++ trunk/Source/WebKit/chromium/tests/CCLayerTreeHostCommonTest.cpp 2012-03-19 07:11:31 UTC (rev 111160)
@@ -605,7 +605,7 @@
WebCore::KeyframeValueList values(AnimatedPropertyWebkitTransform);
TransformOperations operations1;
- operations1.operations().append(TranslateTransformOperation::create(Length(2, Fixed), Length(0, Fixed), TransformOperation::TRANSLATE_X));
+ operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TRANSLATE_X));
values.insert(new TransformAnimationValue(0, &operations1));
RefPtr<Animation> animation = Animation::create();
Modified: trunk/Source/WebKit/chromium/tests/CCOcclusionTrackerTest.cpp (111159 => 111160)
--- trunk/Source/WebKit/chromium/tests/CCOcclusionTrackerTest.cpp 2012-03-19 07:01:21 UTC (rev 111159)
+++ trunk/Source/WebKit/chromium/tests/CCOcclusionTrackerTest.cpp 2012-03-19 07:11:31 UTC (rev 111160)
@@ -1699,7 +1699,7 @@
WebCore::KeyframeValueList values(AnimatedPropertyWebkitTransform);
TransformOperations operations1;
- operations1.operations().append(TranslateTransformOperation::create(Length(2, Fixed), Length(0, Fixed), TransformOperation::TRANSLATE_X));
+ operations1.operations().append(TranslateTransformOperation::create(Length(2, WebCore::Fixed), Length(0, WebCore::Fixed), TransformOperation::TRANSLATE_X));
values.insert(new TransformAnimationValue(0, &operations1));
RefPtr<Animation> animation = Animation::create();
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes