forked from chromium/chromium
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwm_lookup_aura.cc
34 lines (26 loc) · 1003 Bytes
/
wm_lookup_aura.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// Copyright 2016 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "ash/aura/wm_lookup_aura.h"
#include "ash/aura/wm_root_window_controller_aura.h"
#include "ash/aura/wm_window_aura.h"
#include "ash/common/wm_layout_manager.h"
#include "ash/display/window_tree_host_manager.h"
#include "ash/shell.h"
namespace ash {
WmLookupAura::WmLookupAura() {
WmLookup::Set(this);
}
WmLookupAura::~WmLookupAura() {
WmLookup::Set(nullptr);
}
WmRootWindowController* WmLookupAura::GetRootWindowControllerWithDisplayId(
int64_t id) {
return WmRootWindowControllerAura::Get(Shell::GetInstance()
->window_tree_host_manager()
->GetRootWindowForDisplayId(id));
}
WmWindow* WmLookupAura::GetWindowForWidget(views::Widget* widget) {
return WmWindowAura::Get(widget->GetNativeWindow());
}
} // namespace ash