| Index: cc/yuv_video_draw_quad.h
|
| diff --git a/cc/yuv_video_draw_quad.h b/cc/yuv_video_draw_quad.h
|
| index 5d574b7bb9b882c094d2f31f1d4836726c2e5b6e..19ed7ce1034db58bfe95506bd7125f9e597dd218 100644
|
| --- a/cc/yuv_video_draw_quad.h
|
| +++ b/cc/yuv_video_draw_quad.h
|
| @@ -12,23 +12,23 @@
|
|
|
| namespace cc {
|
|
|
| -class CCYUVVideoDrawQuad : public CCDrawQuad {
|
| +class YUVVideoDrawQuad : public DrawQuad {
|
| public:
|
| - static scoped_ptr<CCYUVVideoDrawQuad> create(const CCSharedQuadState*, const IntRect&, const CCVideoLayerImpl::FramePlane& yPlane, const CCVideoLayerImpl::FramePlane& uPlane, const CCVideoLayerImpl::FramePlane& vPlane);
|
| + static scoped_ptr<YUVVideoDrawQuad> create(const SharedQuadState*, const IntRect&, const VideoLayerImpl::FramePlane& yPlane, const VideoLayerImpl::FramePlane& uPlane, const VideoLayerImpl::FramePlane& vPlane);
|
|
|
| - const CCVideoLayerImpl::FramePlane& yPlane() const { return m_yPlane; }
|
| - const CCVideoLayerImpl::FramePlane& uPlane() const { return m_uPlane; }
|
| - const CCVideoLayerImpl::FramePlane& vPlane() const { return m_vPlane; }
|
| + const VideoLayerImpl::FramePlane& yPlane() const { return m_yPlane; }
|
| + const VideoLayerImpl::FramePlane& uPlane() const { return m_uPlane; }
|
| + const VideoLayerImpl::FramePlane& vPlane() const { return m_vPlane; }
|
|
|
| - static const CCYUVVideoDrawQuad* materialCast(const CCDrawQuad*);
|
| + static const YUVVideoDrawQuad* materialCast(const DrawQuad*);
|
| private:
|
| - CCYUVVideoDrawQuad(const CCSharedQuadState*, const IntRect&, const CCVideoLayerImpl::FramePlane& yPlane, const CCVideoLayerImpl::FramePlane& uPlane, const CCVideoLayerImpl::FramePlane& vPlane);
|
| + YUVVideoDrawQuad(const SharedQuadState*, const IntRect&, const VideoLayerImpl::FramePlane& yPlane, const VideoLayerImpl::FramePlane& uPlane, const VideoLayerImpl::FramePlane& vPlane);
|
|
|
| - CCVideoLayerImpl::FramePlane m_yPlane;
|
| - CCVideoLayerImpl::FramePlane m_uPlane;
|
| - CCVideoLayerImpl::FramePlane m_vPlane;
|
| + VideoLayerImpl::FramePlane m_yPlane;
|
| + VideoLayerImpl::FramePlane m_uPlane;
|
| + VideoLayerImpl::FramePlane m_vPlane;
|
|
|
| - DISALLOW_COPY_AND_ASSIGN(CCYUVVideoDrawQuad);
|
| + DISALLOW_COPY_AND_ASSIGN(YUVVideoDrawQuad);
|
| };
|
|
|
| }
|
|
|