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

Unified Diff: cc/quads/shared_quad_state.cc

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/shared_quad_state.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: cc/quads/shared_quad_state.cc
diff --git a/cc/quads/shared_quad_state.cc b/cc/quads/shared_quad_state.cc
index 3832886487d70d3f1a7eb6b737013427a107babc..444d3300bed1b9d154680131ffa632ac8992b5c7 100644
--- a/cc/quads/shared_quad_state.cc
+++ b/cc/quads/shared_quad_state.cc
@@ -19,14 +19,6 @@ SharedQuadState::~SharedQuadState() {
"cc::SharedQuadState", this);
}
-scoped_ptr<SharedQuadState> SharedQuadState::Create() {
- return make_scoped_ptr(new SharedQuadState);
-}
-
-scoped_ptr<SharedQuadState> SharedQuadState::Copy() const {
- return make_scoped_ptr(new SharedQuadState(*this));
-}
-
void SharedQuadState::CopyFrom(const SharedQuadState* other) {
*this = *other;
}
« no previous file with comments | « cc/quads/shared_quad_state.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698