| Index: ui/gfx/transform.h
|
| diff --git a/ui/gfx/transform.h b/ui/gfx/transform.h
|
| index 20740ad7ae925dd029d85c3694a4a8670fc7f602..b7cf73b68dc302f5d26d600ef9cce54be6ab6301 100644
|
| --- a/ui/gfx/transform.h
|
| +++ b/ui/gfx/transform.h
|
| @@ -40,6 +40,7 @@ class GFX_EXPORT Transform {
|
| // Initialize with the concatenation of lhs * rhs.
|
| Transform(const Transform& lhs, const Transform& rhs)
|
| : matrix_(lhs.matrix_, rhs.matrix_) {}
|
| + explicit Transform(const SkMatrix44& matrix) : matrix_(matrix) {}
|
| // Constructs a transform from explicit 16 matrix elements. Elements
|
| // should be given in row-major order.
|
| Transform(SkMScalar col1row1,
|
|
|