| 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/gfx/display.h" | 8 #include "ui/gfx/display.h" |
| 9 #include "ui/gfx/point.h" | 9 #include "ui/gfx/point.h" |
| 10 #include "ui/gfx/point_conversions.h" | 10 #include "ui/gfx/point_conversions.h" |
| 11 #include "ui/gfx/rect.h" | 11 #include "ui/gfx/rect.h" |
| 12 #include "ui/gfx/rect_conversions.h" | 12 #include "ui/gfx/rect_conversions.h" |
| 13 #include "ui/gfx/screen.h" | 13 #include "ui/gfx/screen.h" |
| 14 #include "ui/gfx/size.h" | 14 #include "ui/gfx/size.h" |
| 15 #include "ui/gfx/size_conversions.h" | 15 #include "ui/gfx/size_conversions.h" |
| 16 | 16 |
| 17 namespace content { | 17 namespace content { |
| 18 namespace { | 18 namespace { |
| 19 | 19 |
| 20 float GetScaleForView(const RenderWidgetHostView* view) { | 20 float GetScaleForView(const RenderWidgetHostView* view) { |
| 21 return ui::GetImageScale(GetScaleFactorForView(view)); | 21 return ui::GetScaleFactorScale(GetScaleFactorForView(view)); |
| 22 } | 22 } |
| 23 | 23 |
| 24 } // namespace | 24 } // namespace |
| 25 | 25 |
| 26 ui::ScaleFactor GetScaleFactorForView(const RenderWidgetHostView* view) { | 26 ui::ScaleFactor GetScaleFactorForView(const RenderWidgetHostView* view) { |
| 27 return ui::GetScaleFactorForNativeView(view ? view->GetNativeView() : NULL); | 27 return ui::GetScaleFactorForNativeView(view ? view->GetNativeView() : NULL); |
| 28 } | 28 } |
| 29 | 29 |
| 30 gfx::Point ConvertViewPointToDIP(const RenderWidgetHostView* view, | 30 gfx::Point ConvertViewPointToDIP(const RenderWidgetHostView* view, |
| 31 const gfx::Point& point_in_pixel) { | 31 const gfx::Point& point_in_pixel) { |
| (...skipping 25 matching lines...) Expand all Loading... |
| 57 } | 57 } |
| 58 | 58 |
| 59 | 59 |
| 60 gfx::Rect ConvertRectToPixel(float scale_factor, | 60 gfx::Rect ConvertRectToPixel(float scale_factor, |
| 61 const gfx::Rect& rect_in_dip) { | 61 const gfx::Rect& rect_in_dip) { |
| 62 return gfx::ToFlooredRectDeprecated( | 62 return gfx::ToFlooredRectDeprecated( |
| 63 gfx::ScaleRect(rect_in_dip, scale_factor)); | 63 gfx::ScaleRect(rect_in_dip, scale_factor)); |
| 64 } | 64 } |
| 65 | 65 |
| 66 } // namespace content | 66 } // namespace content |
| OLD | NEW |