Home
last modified time | relevance | path

Searched refs:top_container (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/chrome/browser/ui/views/frame/
Dbrowser_view_unittest.cc61 TopContainerView* top_container = browser_view()->top_container(); in TEST_F() local
75 EXPECT_EQ(top_container, browser_view()->tabstrip()->parent()); in TEST_F()
76 EXPECT_EQ(top_container, browser_view()->toolbar()->parent()); in TEST_F()
77 EXPECT_EQ(top_container, browser_view()->GetBookmarkBarView()->parent()); in TEST_F()
85 browser_view()->GetIndexOf(top_container)); in TEST_F()
88 EXPECT_EQ(0, top_container->x()); in TEST_F()
89 EXPECT_EQ(0, top_container->y()); in TEST_F()
90 EXPECT_EQ(browser_view()->width(), top_container->width()); in TEST_F()
102 EXPECT_EQ(top_container->bounds().bottom(), contents_container->y()); in TEST_F()
131 browser_view()->GetIndexOf(top_container)); in TEST_F()
[all …]
Dimmersive_mode_controller_ash.cc62 browser_view_->top_container()); in Init()
169 browser_view_->top_container()->SetPaintToLayer(true); in OnImmersiveRevealStarted()
170 browser_view_->top_container()->SetFillsBoundsOpaquely(false); in OnImmersiveRevealStarted()
178 browser_view_->top_container()->SetPaintToLayer(false); in OnImmersiveRevealEnded()
184 browser_view_->top_container()->SetPaintToLayer(false); in OnImmersiveFullscreenExited()
198 views::View* top_container_view = browser_view_->top_container(); in GetVisibleBoundsInScreen()
Dimmersive_mode_controller_ash_unittest.cc152 EXPECT_EQ(0, GetBoundsInWidget(browser_view()->top_container()).y()); in TEST_F()
171 EXPECT_EQ(0, GetBoundsInWidget(browser_view()->top_container()).y()); in TEST_F()
289 views::View* top_container = browser_view()->top_container(); in TEST_F() local
311 EXPECT_TRUE(top_container->GetVisibleBounds().IsEmpty()); in TEST_F()
326 gfx::Rect top_container_bounds_in_widget(GetBoundsInWidget(top_container)); in TEST_F()
Dbrowser_frame.cc231 views::View* top_container = browser_view_->top_container(); in SchedulePaintInRect() local
232 CHECK(top_container->layer()); in SchedulePaintInRect()
233 top_container->SchedulePaintInRect(rect); in SchedulePaintInRect()
Dbrowser_view_layout.h52 views::View* top_container,
Dbrowser_view_layout.cc144 views::View* top_container, in Init() argument
154 top_container_ = top_container; in Init()
Dbrowser_view_layout_unittest.cc146 MockView* top_container() { return top_container_; } in top_container() function in BrowserViewLayoutTest
Dbrowser_view.h161 TopContainerView* top_container() { return top_container_; } in top_container() function
/external/chromium_org/ash/wm/
Dimmersive_fullscreen_controller_unittest.cc122 views::View* top_container() { in top_container() function in ash::ImmersiveFullscreenControllerTest
355 top_container()->GetBoundsInScreen(); in TEST_F()
424 views::Widget* widget = top_container()->GetWidget(); in TEST_F()
425 widget->SetCapture(top_container()); in TEST_F()
434 widget->SetCapture(top_container()); in TEST_F()
453 ASSERT_FALSE(top_container()->GetWidget()->IsActive()); in TEST_F()
460 top_container()->GetBoundsInScreen(); in TEST_F()
521 top_container()->GetWidget()->GetNativeWindow()->GetRootWindow()); in TEST_F()
583 ASSERT_FALSE(top_container()->GetWidget()->IsActive()); in TEST_F()
584 ASSERT_FALSE(top_container()->GetBoundsInScreen().Intersects( in TEST_F()
[all …]
Dwindow_cycle_controller_unittest.cc259 Window* top_container = in TEST_F() local
263 scoped_ptr<Window> window2(CreateTestWindowWithId(2, top_container)); in TEST_F()
303 Window* top_container = in TEST_F() local
307 scoped_ptr<Window> window2(CreateTestWindowWithId(2, top_container)); in TEST_F()
308 scoped_ptr<Window> window3(CreateTestWindowWithId(3, top_container)); in TEST_F()
Dimmersive_fullscreen_controller.h98 views::View* top_container);
Dimmersive_fullscreen_controller.cc260 views::View* top_container) { in Init() argument
262 top_container_ = top_container; in Init()
/external/chromium_org/chrome/browser/ui/views/
Dfullscreen_exit_bubble_views.cc454 browser_view_->top_container()->GetBoundsInScreen().bottom(); in GetPopupRect()