OLD | NEW |
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 "content/browser/renderer_host/dip_util.h" | 5 #include "content/browser/renderer_host/dip_util.h" |
6 | 6 |
7 #include "content/public/browser/render_widget_host_view.h" | 7 #include "content/public/browser/render_widget_host_view.h" |
8 #include "ui/base/layout.h" | 8 #include "ui/base/layout.h" |
9 #include "ui/gfx/display.h" | 9 #include "ui/gfx/display.h" |
10 #include "ui/gfx/geometry/dip_util.h" | 10 #include "ui/gfx/geometry/dip_util.h" |
11 #include "ui/gfx/point.h" | 11 #include "ui/gfx/geometry/point.h" |
12 #include "ui/gfx/point_conversions.h" | 12 #include "ui/gfx/geometry/point_conversions.h" |
13 #include "ui/gfx/rect.h" | 13 #include "ui/gfx/rect.h" |
14 #include "ui/gfx/rect_conversions.h" | 14 #include "ui/gfx/rect_conversions.h" |
15 #include "ui/gfx/screen.h" | 15 #include "ui/gfx/screen.h" |
16 #include "ui/gfx/size.h" | 16 #include "ui/gfx/size.h" |
17 #include "ui/gfx/size_conversions.h" | 17 #include "ui/gfx/size_conversions.h" |
18 | 18 |
19 namespace content { | 19 namespace content { |
20 | 20 |
21 float GetScaleFactorForView(const RenderWidgetHostView* view) { | 21 float GetScaleFactorForView(const RenderWidgetHostView* view) { |
22 return ui::GetScaleFactorForNativeView(view ? view->GetNativeView() : NULL); | 22 return ui::GetScaleFactorForNativeView(view ? view->GetNativeView() : NULL); |
23 } | 23 } |
24 | 24 |
25 gfx::Point ConvertViewPointToDIP(const RenderWidgetHostView* view, | 25 gfx::Point ConvertViewPointToDIP(const RenderWidgetHostView* view, |
26 const gfx::Point& point_in_pixel) { | 26 const gfx::Point& point_in_pixel) { |
27 return gfx::ConvertPointToDIP(GetScaleFactorForView(view), point_in_pixel); | 27 return gfx::ConvertPointToDIP(GetScaleFactorForView(view), point_in_pixel); |
28 } | 28 } |
29 | 29 |
30 gfx::Size ConvertViewSizeToPixel(const RenderWidgetHostView* view, | 30 gfx::Size ConvertViewSizeToPixel(const RenderWidgetHostView* view, |
31 const gfx::Size& size_in_dip) { | 31 const gfx::Size& size_in_dip) { |
32 return gfx::ConvertSizeToPixel(GetScaleFactorForView(view), size_in_dip); | 32 return gfx::ConvertSizeToPixel(GetScaleFactorForView(view), size_in_dip); |
33 } | 33 } |
34 | 34 |
35 gfx::Rect ConvertViewRectToPixel(const RenderWidgetHostView* view, | 35 gfx::Rect ConvertViewRectToPixel(const RenderWidgetHostView* view, |
36 const gfx::Rect& rect_in_dip) { | 36 const gfx::Rect& rect_in_dip) { |
37 return gfx::ConvertRectToPixel(GetScaleFactorForView(view), rect_in_dip); | 37 return gfx::ConvertRectToPixel(GetScaleFactorForView(view), rect_in_dip); |
38 } | 38 } |
39 | 39 |
40 } // namespace content | 40 } // namespace content |
OLD | NEW |