| Index: Source/core/dom/DOMMatrixReadOnly.h
|
| diff --git a/Source/core/dom/DOMMatrixReadOnly.h b/Source/core/dom/DOMMatrixReadOnly.h
|
| index 1d99724d223edcf840d05dedcf67745e0ba94d01..03bcbd7c4b4ab437f32db23e3710c5407d93f902 100644
|
| --- a/Source/core/dom/DOMMatrixReadOnly.h
|
| +++ b/Source/core/dom/DOMMatrixReadOnly.h
|
| @@ -9,6 +9,8 @@
|
|
|
| namespace blink {
|
|
|
| +class DOMMatrix;
|
| +
|
| class DOMMatrixReadOnly : public GarbageCollected<DOMMatrixReadOnly> {
|
| public:
|
| double a() const { return m11(); }
|
| @@ -38,6 +40,8 @@ public:
|
| bool is2D() const;
|
| bool isIdentity() const;
|
|
|
| + DOMMatrix* translate(double tx, double ty, double tz = 0);
|
| +
|
| void trace(Visitor*) { }
|
|
|
| protected:
|
|
|