| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "ui/views/widget/desktop_aura/desktop_focus_rules.h" | 5 #include "ui/views/widget/desktop_aura/desktop_focus_rules.h" |
| 6 | 6 |
| 7 #include "ui/aura/client/focus_client.h" | 7 #include "ui/aura/client/focus_client.h" |
| 8 #include "ui/aura/test/test_window_delegate.h" | 8 #include "ui/aura/test/test_window_delegate.h" |
| 9 #include "ui/aura/window.h" | 9 #include "ui/aura/window.h" |
| 10 #include "ui/aura/window_event_dispatcher.h" | 10 #include "ui/aura/window_event_dispatcher.h" |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 aura::client::GetFocusClient(w2->GetNativeView())->FocusWindow(w2_child); | 49 aura::client::GetFocusClient(w2->GetNativeView())->FocusWindow(w2_child); |
| 50 aura::Window* focused = | 50 aura::Window* focused = |
| 51 aura::client::GetFocusClient(w2->GetNativeView())->GetFocusedWindow(); | 51 aura::client::GetFocusClient(w2->GetNativeView())->GetFocusedWindow(); |
| 52 EXPECT_TRUE((focused == NULL) || w2->GetNativeView()->Contains(focused)); | 52 EXPECT_TRUE((focused == NULL) || w2->GetNativeView()->Contains(focused)); |
| 53 views::corewm::RemoveTransientChild(w1->GetNativeView(), w2_child); | 53 views::corewm::RemoveTransientChild(w1->GetNativeView(), w2_child); |
| 54 w1.reset(); | 54 w1.reset(); |
| 55 w2.reset(); | 55 w2.reset(); |
| 56 } | 56 } |
| 57 | 57 |
| 58 } // namespace views | 58 } // namespace views |
| OLD | NEW |