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

Unified Diff: cc/quads/shared_quad_state.h

Issue 271683004: Expose default ctor of SQS and remove Create and Copy funciton of SQS (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@RPPower
Patch Set: Address review comments Created 6 years, 7 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
« no previous file with comments | « cc/quads/render_pass.cc ('k') | cc/quads/shared_quad_state.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « cc/quads/render_pass.cc ('k') | cc/quads/shared_quad_state.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698