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

Side by Side Diff: chrome/browser/ui/views/tabs/window_finder_mus.cc

Issue 2099513003: mus: Use the new drag API to implement tab dragging in chrome. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@dragging-part-1
Patch Set: Rebase to tot Created 4 years, 5 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 | « chrome/browser/ui/views/tabs/window_finder_mus.h ('k') | ui/views/mus/native_widget_mus.h » ('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 "chrome/browser/ui/views/tabs/window_finder_mus.h"
6
7 #include "ui/aura/window.h"
8 #include "ui/views/mus/native_widget_mus.h"
9 #include "ui/views/mus/window_manager_connection.h"
10
11 WindowFinderMus::WindowFinderMus() {}
12
13 WindowFinderMus::~WindowFinderMus() {}
14
15 gfx::NativeWindow WindowFinderMus::GetLocalProcessWindowAtPoint(
16 const gfx::Point& screen_point,
17 const std::set<gfx::NativeWindow>& ignore) {
18 std::set<ui::Window*> mus_windows =
19 views::WindowManagerConnection::Get()->GetRoots();
20 // TODO(erg): Needs to deal with stacking order here.
21
22 // For every mus window, look at the associated aura window and see if we're
23 // in that.
24 for (ui::Window* mus : mus_windows) {
25 views::Widget* widget = views::NativeWidgetMus::GetWidgetForWindow(mus);
26 if (widget && widget->GetWindowBoundsInScreen().Contains(screen_point)) {
27 aura::Window* content_window = widget->GetNativeWindow();
28
29 // If we were instructed to ignore this window, ignore it.
30 if (ContainsKey(ignore, content_window))
31 continue;
32
33 return content_window;
34 }
35 }
36
37 return nullptr;
38 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/tabs/window_finder_mus.h ('k') | ui/views/mus/native_widget_mus.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698