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

Side by Side Diff: ui/gfx/display_finder.cc

Issue 1615023004: Start of display management for mus (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix crash and add back getting constants Created 4 years, 11 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
« no previous file with comments | « ui/gfx/display_finder.h ('k') | ui/gfx/gfx.gyp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "ui/gfx/display_finder.h"
6
7 #include <limits>
8
9 #include "base/logging.h"
10 #include "ui/gfx/display.h"
11 #include "ui/gfx/geometry/point.h"
12 #include "ui/gfx/geometry/rect.h"
13
14 namespace gfx {
15
16 const Display* FindDisplayNearestPoint(const std::vector<Display>& displays,
17 const Point& point) {
18 DCHECK(!displays.empty());
19 int min_distance = std::numeric_limits<int>::max();
20 const Display* nearest_display = nullptr;
21 for (const auto& display : displays) {
22 const int distance = display.bounds().ManhattanDistanceToPoint(point);
23 if (distance < min_distance) {
24 min_distance = distance;
25 nearest_display = &display;
26 }
27 }
28 // There should always be at least one display that is less than INT_MAX away.
29 DCHECK(nearest_display);
30 return nearest_display;
31 }
32
33 const Display* FindDisplayWithBiggestIntersection(
34 const std::vector<Display>& displays,
35 const Rect& rect) {
36 DCHECK(!displays.empty());
37 int max_area = 0;
38 const Display* matching = nullptr;
39 for (const auto& display : displays) {
40 const Rect intersect = IntersectRects(display.bounds(), rect);
41 const int area = intersect.width() * intersect.height();
42 if (area > max_area) {
43 max_area = area;
44 matching = &display;
45 }
46 }
47 return matching;
48 }
49
50 } // namespace gfx
OLDNEW
« no previous file with comments | « ui/gfx/display_finder.h ('k') | ui/gfx/gfx.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698