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

Unified Diff: ui/views/widget/widget.cc

Issue 2645253002: DesktopAura: Track windows "owned" via the DesktopWindowTreeHost (Closed)
Patch Set: Add context, comment Created 3 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « ui/views/widget/widget.h ('k') | ui/views/widget/widget_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/views/widget/widget.cc
diff --git a/ui/views/widget/widget.cc b/ui/views/widget/widget.cc
index 8b062753e23765729eb07cb7ac267a9ff10fe818..4e5443dc44277f8bcd7ea308fdc2fed419c1e4ef 100644
--- a/ui/views/widget/widget.cc
+++ b/ui/views/widget/widget.cc
@@ -247,8 +247,10 @@ void Widget::GetAllChildWidgets(gfx::NativeView native_view,
// static
void Widget::GetAllOwnedWidgets(gfx::NativeView native_view,
- Widgets* owned) {
- internal::NativeWidgetPrivate::GetAllOwnedWidgets(native_view, owned);
+ Widgets* owned,
+ bool include_toplevel) {
+ internal::NativeWidgetPrivate::GetAllOwnedWidgets(native_view, owned,
+ include_toplevel);
}
// static
« no previous file with comments | « ui/views/widget/widget.h ('k') | ui/views/widget/widget_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698