| Index: ash/wm/always_on_top_controller.cc
|
| diff --git a/ash/wm/always_on_top_controller.cc b/ash/wm/always_on_top_controller.cc
|
| index 44776feb31370046e4d08d971113f81ed61ca670..c0f73568cd09b9009e01c5f022a49ab554a49293 100644
|
| --- a/ash/wm/always_on_top_controller.cc
|
| +++ b/ash/wm/always_on_top_controller.cc
|
| @@ -55,8 +55,8 @@ void AlwaysOnTopController::OnWindowPropertyChanged(aura::Window* window,
|
| const void* key,
|
| intptr_t old) {
|
| if (key == aura::client::kAlwaysOnTopKey) {
|
| - DCHECK(window->type() == aura::client::WINDOW_TYPE_NORMAL ||
|
| - window->type() == aura::client::WINDOW_TYPE_POPUP);
|
| + DCHECK(window->type() == ui::wm::WINDOW_TYPE_NORMAL ||
|
| + window->type() == ui::wm::WINDOW_TYPE_POPUP);
|
| aura::Window* container = GetContainer(window);
|
| if (window->parent() != container)
|
| container->AddChild(window);
|
|
|