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

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

Issue 2663163004: Run the "Relaunch Chrome" dialog test everywhere. (Closed)
Patch Set: Add back the fix 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();
sky 2017/02/06 17:29:47 optional: don't bother with local, change for to:
sky 2017/02/06 17:29:47 How about fixing the capitalization here, e.g. "Le
tapted 2017/02/06 22:50:49 Ach - thanks. Done.
tapted 2017/02/06 22:50:49 Done.
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
« no previous file with comments | « chrome/browser/ui/update_chrome_dialog_browsertest.cc ('k') | ui/views/test/widget_test_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698