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

Side by Side Diff: content/browser/renderer_host/dip_util.cc

Issue 823703003: Cleanup: Update the path to insets and point headers. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: point.h Created 5 years, 12 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
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 "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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698