Lines Matching defs:default_container

392   aura::Window* default_container = Shell::GetContainer(
394 default_container->AddChild(window.get());
818 aura::Window* default_container() { return default_container_; }
829 for (int i = static_cast<int>(default_container()->children().size()) - 1;
834 if (default_container()->children()[i] == wa)
835 result += default_container()->children()[i]->IsVisible() ? "A" : "a";
836 else if (default_container()->children()[i] == wb)
837 result += default_container()->children()[i]->IsVisible() ? "B" : "b";
838 else if (default_container()->children()[i] == wc)
839 result += default_container()->children()[i]->IsVisible() ? "C" : "c";
840 else if (default_container()->children()[i] == backdrop)
841 result += default_container()->children()[i]->IsVisible() ? "X" : "x";
869 ASSERT_EQ(1U, default_container()->children().size());
870 EXPECT_FALSE(default_container()->children()[0]->IsVisible());
876 ASSERT_EQ(2U, default_container()->children().size());
877 EXPECT_TRUE(default_container()->children()[0]->IsVisible());
878 EXPECT_TRUE(default_container()->children()[1]->IsVisible());
879 EXPECT_EQ(window.get(), default_container()->children()[1]);
880 EXPECT_EQ(default_container()->bounds().ToString(),
881 default_container()->children()[0]->bounds().ToString());
885 ASSERT_EQ(1U, default_container()->children().size());
886 EXPECT_FALSE(default_container()->children()[0]->IsVisible());
890 ASSERT_EQ(0U, default_container()->children().size());
899 ASSERT_EQ(1U, default_container()->children().size());
900 EXPECT_EQ(window1.get(), default_container()->children()[0]);
917 backdrop = default_container()->children()[2];
924 default_container()->StackChildAtTop(window2.get());
958 gfx::Rect initial_bounds = default_container()->children()[0]->bounds();
966 gfx::Rect reduced_bounds = default_container()->children()[0]->bounds();
972 EXPECT_GT(default_container()->children()[0]->bounds().height(),
984 aura::Window* default_container = Shell::GetContainer(
987 default_container->layout_manager());