Chromium Code Reviews| Index: third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h |
| diff --git a/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h b/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h |
| index 05f7f339612b76a6958e9626a92c69e95a0b666c..96aa4fa7853987269e6a07c10e8fdd06674a239c 100644 |
| --- a/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h |
| +++ b/third_party/WebKit/Source/core/geometry/DOMMatrixReadOnly.h |
| @@ -64,6 +64,7 @@ class CORE_EXPORT DOMMatrixReadOnly |
| bool is2D() const; |
| bool isIdentity() const; |
| + bool isNaNorInf(double x) const; |
|
zino
2017/05/16 22:25:37
nit: Please remove this?
Byoungkwon Ko
2017/05/18 13:52:14
Done.
|
| DOMMatrix* multiply(DOMMatrixInit&, ExceptionState&); |
| DOMMatrix* translate(double tx = 0, double ty = 0, double tz = 0); |
| @@ -97,7 +98,7 @@ class CORE_EXPORT DOMMatrixReadOnly |
| NotShared<DOMFloat32Array> toFloat32Array() const; |
| NotShared<DOMFloat64Array> toFloat64Array() const; |
| - const String toString() const; |
| + const String toString(ExceptionState&) const; |
| ScriptValue toJSONForBinding(ScriptState*) const; |