| Index: cc/quads/shared_quad_state.h
|
| diff --git a/cc/quads/shared_quad_state.h b/cc/quads/shared_quad_state.h
|
| index cf4438158ec57eceb3115a201c8e995dd3aaa53b..d0e2afb64ef572c6c493844078400d217ccd3a47 100644
|
| --- a/cc/quads/shared_quad_state.h
|
| +++ b/cc/quads/shared_quad_state.h
|
| @@ -24,10 +24,9 @@ namespace cc {
|
| // QuadList.
|
| class CC_EXPORT SharedQuadState {
|
| public:
|
| - static scoped_ptr<SharedQuadState> Create();
|
| + SharedQuadState();
|
| ~SharedQuadState();
|
|
|
| - scoped_ptr<SharedQuadState> Copy() const;
|
| void CopyFrom(const SharedQuadState* other);
|
|
|
| void SetAll(const gfx::Transform& content_to_target_transform,
|
| @@ -50,9 +49,6 @@ class CC_EXPORT SharedQuadState {
|
| bool is_clipped;
|
| float opacity;
|
| SkXfermode::Mode blend_mode;
|
| -
|
| - private:
|
| - SharedQuadState();
|
| };
|
|
|
| } // namespace cc
|
|
|