| Index: cc/CCYUVVideoDrawQuad.cpp
|
| diff --git a/cc/CCYUVVideoDrawQuad.cpp b/cc/CCYUVVideoDrawQuad.cpp
|
| index 806d432b65fa5067817e5cc9a7cfd26d1af68cde..8ae2ed2e08f7a66d39b8f27db3880d109786ad09 100644
|
| --- a/cc/CCYUVVideoDrawQuad.cpp
|
| +++ b/cc/CCYUVVideoDrawQuad.cpp
|
| @@ -8,12 +8,12 @@
|
|
|
| namespace cc {
|
|
|
| -scoped_ptr<CCYUVVideoDrawQuad> CCYUVVideoDrawQuad::create(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, const CCVideoLayerImpl::FramePlane& yPlane, const CCVideoLayerImpl::FramePlane& uPlane, const CCVideoLayerImpl::FramePlane& vPlane)
|
| +scoped_ptr<CCYUVVideoDrawQuad> CCYUVVideoDrawQuad::create(const CCSharedQuadState* sharedQuadState, const WebKit::WebRect& quadRect, const CCVideoLayerImpl::FramePlane& yPlane, const CCVideoLayerImpl::FramePlane& uPlane, const CCVideoLayerImpl::FramePlane& vPlane)
|
| {
|
| return scoped_ptr<CCYUVVideoDrawQuad>(new CCYUVVideoDrawQuad(sharedQuadState, quadRect, yPlane, uPlane, vPlane));
|
| }
|
|
|
| -CCYUVVideoDrawQuad::CCYUVVideoDrawQuad(const CCSharedQuadState* sharedQuadState, const IntRect& quadRect, const CCVideoLayerImpl::FramePlane& yPlane, const CCVideoLayerImpl::FramePlane& uPlane, const CCVideoLayerImpl::FramePlane& vPlane)
|
| +CCYUVVideoDrawQuad::CCYUVVideoDrawQuad(const CCSharedQuadState* sharedQuadState, const WebKit::WebRect& quadRect, const CCVideoLayerImpl::FramePlane& yPlane, const CCVideoLayerImpl::FramePlane& uPlane, const CCVideoLayerImpl::FramePlane& vPlane)
|
| : CCDrawQuad(sharedQuadState, CCDrawQuad::YUVVideoContent, quadRect)
|
| , m_yPlane(yPlane)
|
| , m_uPlane(uPlane)
|
|
|