Index: cc/LayerChromium.cpp |
=================================================================== |
--- cc/LayerChromium.cpp (revision 160422) |
+++ cc/LayerChromium.cpp (working copy) |
@@ -452,6 +452,14 @@ |
setNeedsCommit(); |
} |
+void LayerChromium::setImplTransform(const WebTransformationMatrix& transform) |
+{ |
+ if (m_implTransform == transform) |
+ return; |
+ m_implTransform = transform; |
+ setNeedsCommit(); |
+} |
+ |
void LayerChromium::setDoubleSided(bool doubleSided) |
{ |
if (m_doubleSided == doubleSided) |