OLD | NEW |
1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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/display_finder.h" | 5 #include "ui/display/display_finder.h" |
6 | 6 |
7 #include <limits> | 7 #include <limits> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "ui/gfx/display.h" | 10 #include "ui/display/display.h" |
11 #include "ui/gfx/geometry/point.h" | 11 #include "ui/gfx/geometry/point.h" |
12 #include "ui/gfx/geometry/rect.h" | 12 #include "ui/gfx/geometry/rect.h" |
13 | 13 |
14 namespace display { | 14 namespace display { |
15 | 15 |
16 const Display* FindDisplayNearestPoint(const std::vector<Display>& displays, | 16 const Display* FindDisplayNearestPoint(const std::vector<Display>& displays, |
17 const gfx::Point& point) { | 17 const gfx::Point& point) { |
18 DCHECK(!displays.empty()); | 18 DCHECK(!displays.empty()); |
19 int min_distance = std::numeric_limits<int>::max(); | 19 int min_distance = std::numeric_limits<int>::max(); |
20 const Display* nearest_display = nullptr; | 20 const Display* nearest_display = nullptr; |
(...skipping 20 matching lines...) Expand all Loading... |
41 const int area = intersect.width() * intersect.height(); | 41 const int area = intersect.width() * intersect.height(); |
42 if (area > max_area) { | 42 if (area > max_area) { |
43 max_area = area; | 43 max_area = area; |
44 matching = &display; | 44 matching = &display; |
45 } | 45 } |
46 } | 46 } |
47 return matching; | 47 return matching; |
48 } | 48 } |
49 | 49 |
50 } // namespace display | 50 } // namespace display |
OLD | NEW |