Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(238)

Side by Side Diff: ui/views/test/widget_test_aura.cc

Issue 2675213002: [Mac] DialogBrowserTest implementation to invoke Content settings bubble dialogs. (Closed)
Patch Set: Gets it working on Mac Created 3 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
OLDNEW
« chrome/browser/ui/views/location_bar/location_bar_view.cc ('K') | « chrome/test/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698