| Index: webkit/compositor_bindings/web_transform_operations_impl.cc
|
| diff --git a/webkit/compositor_bindings/web_transform_operations_impl.cc b/webkit/compositor_bindings/web_transform_operations_impl.cc
|
| index fef43d0a9d460fc0f448c4e7d95ae578aaf68b67..c2f8ef0ad8398850df0661602e4d1385061c5ab6 100644
|
| --- a/webkit/compositor_bindings/web_transform_operations_impl.cc
|
| +++ b/webkit/compositor_bindings/web_transform_operations_impl.cc
|
| @@ -3,6 +3,7 @@
|
| // found in the LICENSE file.
|
|
|
| #include "webkit/compositor_bindings/web_transform_operations_impl.h"
|
| +#include "webkit/compositor_bindings/web_transformation_matrix_util.h"
|
|
|
| namespace webkit {
|
|
|
| @@ -44,7 +45,8 @@ void WebTransformOperationsImpl::appendPerspective(double depth) {
|
|
|
| void WebTransformOperationsImpl::appendMatrix(
|
| const WebKit::WebTransformationMatrix& matrix) {
|
| - transform_operations_.AppendMatrix(matrix);
|
| + transform_operations_.AppendMatrix(
|
| + WebTransformationMatrixUtil::ToTransform(matrix));
|
| }
|
|
|
| void WebTransformOperationsImpl::appendIdentity() {
|
|
|