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

Side by Side Diff: ui/gfx/rect.cc

Issue 10996037: Do not convert from RectF to Rect by flooring. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/gfx/rect.h" 5 #include "ui/gfx/rect.h"
6 6
7 #if defined(OS_WIN) 7 #if defined(OS_WIN)
8 #include <windows.h> 8 #include <windows.h>
9 #elif defined(TOOLKIT_GTK) 9 #elif defined(TOOLKIT_GTK)
10 #include <gdk/gdk.h> 10 #include <gdk/gdk.h>
11 #endif 11 #endif
12 12
13 #include "base/logging.h" 13 #include "base/logging.h"
14 #include "base/stringprintf.h" 14 #include "base/stringprintf.h"
15 #include "ui/gfx/insets.h" 15 #include "ui/gfx/insets.h"
16 #include "ui/gfx/rect_base_impl.h" 16 #include "ui/gfx/rect_base_impl.h"
17 #include "ui/gfx/rect_conversions.h"
sky 2012/09/27 20:33:55 Do you need this include?
17 18
18 namespace gfx { 19 namespace gfx {
19 20
20 template class RectBase<Rect, Point, Size, Insets, int>; 21 template class RectBase<Rect, Point, Size, Insets, int>;
21 22
22 typedef class RectBase<Rect, Point, Size, Insets, int> RectBaseT; 23 typedef class RectBase<Rect, Point, Size, Insets, int> RectBaseT;
23 24
24 Rect::Rect() : RectBaseT(gfx::Point()) { 25 Rect::Rect() : RectBaseT(gfx::Point()) {
25 } 26 }
26 27
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 } 107 }
107 #endif 108 #endif
108 109
109 std::string Rect::ToString() const { 110 std::string Rect::ToString() const {
110 return base::StringPrintf("%s %s", 111 return base::StringPrintf("%s %s",
111 origin().ToString().c_str(), 112 origin().ToString().c_str(),
112 size().ToString().c_str()); 113 size().ToString().c_str());
113 } 114 }
114 115
115 } // namespace gfx 116 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/rect.h ('k') | ui/gfx/rect_base.h » ('j') | ui/gfx/rect_conversions.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698