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 "ash/wm/immersive_focus_watcher_aura.h" | 5 #include "ash/wm/immersive_focus_watcher_aura.h" |
6 | 6 |
7 #include "ash/wm/immersive_fullscreen_controller.h" | 7 #include "ash/shared/immersive_fullscreen_controller.h" |
8 #include "ui/aura/window.h" | 8 #include "ui/aura/window.h" |
9 #include "ui/views/bubble/bubble_dialog_delegate.h" | 9 #include "ui/views/bubble/bubble_dialog_delegate.h" |
10 #include "ui/views/view.h" | 10 #include "ui/views/view.h" |
11 #include "ui/views/widget/widget.h" | 11 #include "ui/views/widget/widget.h" |
12 #include "ui/wm/core/transient_window_manager.h" | 12 #include "ui/wm/core/transient_window_manager.h" |
13 #include "ui/wm/core/window_util.h" | 13 #include "ui/wm/core/window_util.h" |
14 #include "ui/wm/public/activation_client.h" | 14 #include "ui/wm/public/activation_client.h" |
15 | 15 |
16 namespace ash { | 16 namespace ash { |
17 namespace { | 17 namespace { |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
271 } | 271 } |
272 } | 272 } |
273 | 273 |
274 void ImmersiveFocusWatcherAura::OnTransientChildRemoved( | 274 void ImmersiveFocusWatcherAura::OnTransientChildRemoved( |
275 aura::Window* window, | 275 aura::Window* window, |
276 aura::Window* transient) { | 276 aura::Window* transient) { |
277 bubble_observer_->StopObserving(transient); | 277 bubble_observer_->StopObserving(transient); |
278 } | 278 } |
279 | 279 |
280 } // namespace ash | 280 } // namespace ash |
OLD | NEW |