| 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 27 matching lines...) Expand all Loading... |
| 38 // Two widgets (each with a DesktopNativeWidgetAura). |w2| has a child Window | 38 // Two widgets (each with a DesktopNativeWidgetAura). |w2| has a child Window |
| 39 // |w2_child| that is not focusable. |w2_child|'s has a transient parent in | 39 // |w2_child| that is not focusable. |w2_child|'s has a transient parent in |
| 40 // |w1|. | 40 // |w1|. |
| 41 scoped_ptr<views::Widget> w1(CreateDesktopWidget()); | 41 scoped_ptr<views::Widget> w1(CreateDesktopWidget()); |
| 42 scoped_ptr<views::Widget> w2(CreateDesktopWidget()); | 42 scoped_ptr<views::Widget> w2(CreateDesktopWidget()); |
| 43 aura::test::TestWindowDelegate w2_child_delegate; | 43 aura::test::TestWindowDelegate w2_child_delegate; |
| 44 w2_child_delegate.set_can_focus(false); | 44 w2_child_delegate.set_can_focus(false); |
| 45 aura::Window* w2_child = new aura::Window(&w2_child_delegate); | 45 aura::Window* w2_child = new aura::Window(&w2_child_delegate); |
| 46 w2_child->Init(aura::WINDOW_LAYER_SOLID_COLOR); | 46 w2_child->Init(aura::WINDOW_LAYER_SOLID_COLOR); |
| 47 w2->GetNativeView()->AddChild(w2_child); | 47 w2->GetNativeView()->AddChild(w2_child); |
| 48 views::corewm::AddTransientChild(w1->GetNativeView(), w2_child); | 48 wm::AddTransientChild(w1->GetNativeView(), w2_child); |
| 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 wm::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 |