Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(192)

Unified Diff: third_party/WebKit/Source/core/dom/CompositorProxy.cpp

Issue 2374773002: [GeometryInterface] Add DOMMatrix(numberSequence) constructor. (Closed)
Patch Set: Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/dom/CompositorProxy.cpp
diff --git a/third_party/WebKit/Source/core/dom/CompositorProxy.cpp b/third_party/WebKit/Source/core/dom/CompositorProxy.cpp
index c8abebf19fd8e66323c3ddf2b78805f9004b7fe4..4b10123fc172bd8e73a31eff6ecf2203ebd294d2 100644
--- a/third_party/WebKit/Source/core/dom/CompositorProxy.cpp
+++ b/third_party/WebKit/Source/core/dom/CompositorProxy.cpp
@@ -204,7 +204,7 @@ DOMMatrix* CompositorProxy::transform(ExceptionState& exceptionState) const
return nullptr;
if (raiseExceptionIfNotMutable(CompositorMutableProperty::kTransform, exceptionState))
return nullptr;
- return DOMMatrix::create(m_state->transform());
+ return DOMMatrix::create(m_state->transform(), exceptionState);
}
void CompositorProxy::setOpacity(double opacity, ExceptionState& exceptionState)

Powered by Google App Engine
This is Rietveld 408576698