summaryrefslogtreecommitdiffstats
path: root/ui/gfx/rect.h
diff options
context:
space:
mode:
authoroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-24 22:56:07 +0000
committeroshima@chromium.org <oshima@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-04-24 22:56:07 +0000
commit9e14c8f60619e3aa0d6a149935b09fc7ca9e5a6d (patch)
tree980e3c39e5baffad96903619b181f75b6b3db4dc /ui/gfx/rect.h
parent90f6c5fe677b294b98d5cc31065aa611fe639398 (diff)
downloadchromium_src-9e14c8f60619e3aa0d6a149935b09fc7ca9e5a6d.zip
chromium_src-9e14c8f60619e3aa0d6a149935b09fc7ca9e5a6d.tar.gz
chromium_src-9e14c8f60619e3aa0d6a149935b09fc7ca9e5a6d.tar.bz2
Noone should use base class, so it's safe to remove virtual destructors for point/size/rect
BUG=none TEST=none Review URL: http://codereview.chromium.org/10203004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@133795 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ui/gfx/rect.h')
-rw-r--r--ui/gfx/rect.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/gfx/rect.h b/ui/gfx/rect.h
index 804754b..d1ffb70 100644
--- a/ui/gfx/rect.h
+++ b/ui/gfx/rect.h
@@ -44,7 +44,7 @@ class UI_EXPORT Rect : public RectBase<Rect, Point, Size, Insets, int> {
explicit Rect(const gfx::Size& size);
Rect(const gfx::Point& origin, const gfx::Size& size);
- virtual ~Rect();
+ ~Rect();
#if defined(OS_WIN)
Rect& operator=(const RECT& r);