| 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/common/wm_window.h" | 5 #include "ash/wm_window.h" |
| 6 | 6 |
| 7 #include <memory> | 7 #include <memory> |
| 8 | 8 |
| 9 #include "ash/common/test/ash_test.h" | 9 #include "ash/test/ash_test.h" |
| 10 #include "ui/aura/window.h" | 10 #include "ui/aura/window.h" |
| 11 #include "ui/aura/window_observer.h" | 11 #include "ui/aura/window_observer.h" |
| 12 | 12 |
| 13 namespace ash { | 13 namespace ash { |
| 14 | 14 |
| 15 using WmWindowTest = AshTest; | 15 using WmWindowTest = AshTest; |
| 16 | 16 |
| 17 namespace { | 17 namespace { |
| 18 | 18 |
| 19 // Tracks calls to OnWindowVisibilityChanged(). | 19 // Tracks calls to OnWindowVisibilityChanged(). |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 WmWindow* parent_window = parent_window_owner->window(); | 75 WmWindow* parent_window = parent_window_owner->window(); |
| 76 std::unique_ptr<WindowOwner> child_owner = CreateChildWindow(parent_window); | 76 std::unique_ptr<WindowOwner> child_owner = CreateChildWindow(parent_window); |
| 77 WmWindow* child_window = child_owner->window(); | 77 WmWindow* child_window = child_owner->window(); |
| 78 VisibilityObserver observer(child_window); | 78 VisibilityObserver observer(child_window); |
| 79 parent_window->Hide(); | 79 parent_window->Hide(); |
| 80 EXPECT_EQ(parent_window, observer.last_observed_window()); | 80 EXPECT_EQ(parent_window, observer.last_observed_window()); |
| 81 EXPECT_FALSE(observer.last_observed_visible_value()); | 81 EXPECT_FALSE(observer.last_observed_visible_value()); |
| 82 } | 82 } |
| 83 | 83 |
| 84 } // namespace ash | 84 } // namespace ash |
| OLD | NEW |