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

Unified Diff: ui/gfx/quad_f.cc

Issue 11299290: Inline gfx::QuadF and gfx::Transform ctor/dtors (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebased (QuadF only) Created 7 years, 12 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 | « ui/gfx/quad_f.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/quad_f.cc
diff --git a/ui/gfx/quad_f.cc b/ui/gfx/quad_f.cc
index 0ca501f345d964b2a23a7b7b10b88555672c9120..8f2b0dcf88debc64da8d4b27c52307881f554382 100644
--- a/ui/gfx/quad_f.cc
+++ b/ui/gfx/quad_f.cc
@@ -11,29 +11,6 @@
namespace gfx {
-QuadF::QuadF() {
-}
-
-QuadF::QuadF(const PointF& p1,
- const PointF& p2,
- const PointF& p3,
- const PointF& p4)
- : p1_(p1),
- p2_(p2),
- p3_(p3),
- p4_(p4) {
-}
-
-QuadF::QuadF(const RectF& rect)
- : p1_(rect.x(), rect.y()),
- p2_(rect.right(), rect.y()),
- p3_(rect.right(), rect.bottom()),
- p4_(rect.x(), rect.bottom()) {
-}
-
-QuadF::~QuadF() {
-}
-
void QuadF::operator=(const QuadF& quad) {
p1_ = quad.p1_;
p2_ = quad.p2_;
« no previous file with comments | « ui/gfx/quad_f.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698