| Index: Source/core/css/CSSMatrix.h
|
| diff --git a/Source/core/css/CSSMatrix.h b/Source/core/css/CSSMatrix.h
|
| index e4b4e1ff5a7714059461ded8a8621d03d2a1f5ef..92c6cb1ab0895c94f0280c342a2f0dadba889e0a 100644
|
| --- a/Source/core/css/CSSMatrix.h
|
| +++ b/Source/core/css/CSSMatrix.h
|
| @@ -41,9 +41,9 @@ public:
|
| {
|
| return adoptRef(new CSSMatrix(m));
|
| }
|
| - static PassRefPtr<CSSMatrix> create(const String& s, ExceptionState& es)
|
| + static PassRefPtr<CSSMatrix> create(const String& s, ExceptionState& exceptionState)
|
| {
|
| - return adoptRef(new CSSMatrix(s, es));
|
| + return adoptRef(new CSSMatrix(s, exceptionState));
|
| }
|
|
|
| double a() const { return m_matrix.a(); }
|
|
|