summaryrefslogtreecommitdiffstats
path: root/views/view_unittest.cc
diff options
context:
space:
mode:
Diffstat (limited to 'views/view_unittest.cc')
-rw-r--r--views/view_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/views/view_unittest.cc b/views/view_unittest.cc
index 3ffd2f5..65c704c 100644
--- a/views/view_unittest.cc
+++ b/views/view_unittest.cc
@@ -1510,14 +1510,14 @@ class TestChangeNativeViewHierarchy {
void CheckEnumeratingNativeWidgets() {
if (!host_->GetTopLevelWidget())
return;
- NativeWidget::NativeWidgets widgets;
- NativeWidget::GetAllNativeWidgets(host_->GetNativeView(), &widgets);
+ Widget::Widgets widgets;
+ Widget::GetAllChildWidgets(host_->GetNativeView(), &widgets);
EXPECT_EQ(TestNativeViewHierarchy::kTotalViews + 1, widgets.size());
// Unfortunately there is no guarantee the sequence of views here so always
// go through all of them.
- for (NativeWidget::NativeWidgets::iterator i = widgets.begin();
+ for (Widget::Widgets::iterator i = widgets.begin();
i != widgets.end(); ++i) {
- View* root_view = (*i)->GetWidget()->GetRootView();
+ View* root_view = (*i)->GetRootView();
if (host_->GetRootView() == root_view)
continue;
size_t j;