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

Unified Diff: ui/gfx/quad_f.cc

Issue 12250019: Removed gfx::QuadF::operator =(const gfx::QuadF&) and let the compiler generate one (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 8f2b0dcf88debc64da8d4b27c52307881f554382..aba67a3248334e23b56f0f656d21a7b26d216097 100644
--- a/ui/gfx/quad_f.cc
+++ b/ui/gfx/quad_f.cc
@@ -11,13 +11,6 @@
namespace gfx {
-void QuadF::operator=(const QuadF& quad) {
- p1_ = quad.p1_;
- p2_ = quad.p2_;
- p3_ = quad.p3_;
- p4_ = quad.p4_;
-}
-
void QuadF::operator=(const RectF& rect) {
p1_ = PointF(rect.x(), rect.y());
p2_ = PointF(rect.right(), rect.y());
« 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