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

Unified Diff: ui/gfx/point.cc

Issue 11428076: Inline hot ctor/dtors for struct-like gfx:: geometry types (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix style issues Created 8 years, 1 month 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/point.h ('k') | ui/gfx/point_f.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/gfx/point.cc
diff --git a/ui/gfx/point.cc b/ui/gfx/point.cc
index e0b55953238ea6528f5149f1cf701eeaf0f760d7..35f4b44b8f26c44b5050e1dcc68e677e14aebf32 100644
--- a/ui/gfx/point.cc
+++ b/ui/gfx/point.cc
@@ -14,12 +14,6 @@ namespace gfx {
template class PointBase<Point, int, Vector2d>;
-Point::Point() : PointBase<Point, int, Vector2d>(0, 0) {
-}
-
-Point::Point(int x, int y) : PointBase<Point, int, Vector2d>(x, y) {
-}
-
#if defined(OS_WIN)
Point::Point(DWORD point) : PointBase<Point, int, Vector2d>(0, 0){
POINTS points = MAKEPOINTS(point);
« no previous file with comments | « ui/gfx/point.h ('k') | ui/gfx/point_f.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698