OLD | NEW |
1 // Copyright 2012 The Chromium Authors. All rights reserved. | 1 // Copyright 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/display/screen.h" | 5 #include "ui/display/screen.h" |
6 | 6 |
7 #include "ui/display/display.h" | 7 #include "ui/display/display.h" |
8 #include "ui/gfx/geometry/rect.h" | 8 #include "ui/gfx/geometry/rect.h" |
9 | 9 |
10 namespace display { | 10 namespace display { |
(...skipping 28 matching lines...) Expand all Loading... |
39 float scale = GetDisplayNearestWindow(view).device_scale_factor(); | 39 float scale = GetDisplayNearestWindow(view).device_scale_factor(); |
40 return ScaleToEnclosingRect(screen_rect, 1.0f / scale); | 40 return ScaleToEnclosingRect(screen_rect, 1.0f / scale); |
41 } | 41 } |
42 | 42 |
43 gfx::Rect Screen::DIPToScreenRectInWindow(gfx::NativeView view, | 43 gfx::Rect Screen::DIPToScreenRectInWindow(gfx::NativeView view, |
44 const gfx::Rect& dip_rect) const { | 44 const gfx::Rect& dip_rect) const { |
45 float scale = GetDisplayNearestWindow(view).device_scale_factor(); | 45 float scale = GetDisplayNearestWindow(view).device_scale_factor(); |
46 return ScaleToEnclosingRect(dip_rect, scale); | 46 return ScaleToEnclosingRect(dip_rect, scale); |
47 } | 47 } |
48 | 48 |
| 49 bool Screen::GetDisplayWithDisplayId(int64_t display_id, |
| 50 display::Display* display) const { |
| 51 for (const display::Display& display_in_list : GetAllDisplays()) { |
| 52 if (display_in_list.id() == display_id) { |
| 53 *display = display_in_list; |
| 54 return true; |
| 55 } |
| 56 } |
| 57 return false; |
| 58 } |
| 59 |
49 } // namespace display | 60 } // namespace display |
OLD | NEW |