| 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/test/widget_test.h" | 5 #include "ui/views/test/widget_test.h" |
| 6 | 6 |
| 7 #include "build/build_config.h" | 7 #include "build/build_config.h" |
| 8 #include "ui/aura/client/focus_client.h" | 8 #include "ui/aura/client/focus_client.h" |
| 9 #include "ui/aura/mus/window_tree_client.h" | 9 #include "ui/aura/mus/window_tree_client.h" |
| 10 #include "ui/aura/test/aura_test_helper.h" | 10 #include "ui/aura/test/aura_test_helper.h" |
| (...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 156 return widget->GetNativeWindow()->GetRootWindow()->GetHost(); | 156 return widget->GetNativeWindow()->GetRootWindow()->GetHost(); |
| 157 } | 157 } |
| 158 | 158 |
| 159 // static | 159 // static |
| 160 bool WidgetTest::IsNativeWindowTransparent(gfx::NativeWindow window) { | 160 bool WidgetTest::IsNativeWindowTransparent(gfx::NativeWindow window) { |
| 161 return window->transparent(); | 161 return window->transparent(); |
| 162 } | 162 } |
| 163 | 163 |
| 164 // static | 164 // static |
| 165 Widget::Widgets WidgetTest::GetAllWidgets() { | 165 Widget::Widgets WidgetTest::GetAllWidgets() { |
| 166 std::vector<aura::Window*> toplevel = GetAllTopLeveLWindows(); | 166 std::vector<aura::Window*> toplevels = GetAllTopLeveLWindows(); |
| 167 Widget::Widgets all_widgets; | 167 Widget::Widgets all_widgets; |
| 168 for (aura::Window* root : toplevel) | 168 for (aura::Window* window : toplevels) |
| 169 Widget::GetAllChildWidgets(root, &all_widgets); | 169 Widget::GetAllChildWidgets(window->GetRootWindow(), &all_widgets); |
| 170 return all_widgets; | 170 return all_widgets; |
| 171 } | 171 } |
| 172 | 172 |
| 173 } // namespace test | 173 } // namespace test |
| 174 } // namespace views | 174 } // namespace views |
| OLD | NEW |