HomeSort by relevance Sort by last modified time
    Searched refs:bounds_in_screen (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_ash.cc 59 gfx::Rect* bounds_in_screen,
62 DCHECK(bounds_in_screen);
64 DCHECK(bounds_in_screen->IsEmpty());
68 bool is_saved_bounds = GetSavedWindowBounds(bounds_in_screen, show_state);
71 display = screen_->GetDisplayMatching(*bounds_in_screen);
73 // If there is no saved bounds (hence bounds_in_screen is empty), use the
76 *bounds_in_screen);
77 *bounds_in_screen = ash::WindowPositioner::GetDefaultWindowBounds(display);
91 bounds_in_screen->AdjustToFit(display.work_area());
105 bounds_in_screen,
    [all...]
  /external/chromium_org/ash/wm/workspace/
phantom_window_controller.h 33 // Shows the phantom window and animates shrinking it to |bounds_in_screen|.
34 void Show(const gfx::Rect& bounds_in_screen);
43 const gfx::Rect& bounds_in_screen);
phantom_window_controller.cc 83 void PhantomWindowController::Show(const gfx::Rect& bounds_in_screen) {
84 gfx::Rect adjusted_bounds_in_screen = GetAdjustedBounds(bounds_in_screen);
108 const gfx::Rect& bounds_in_screen) {
124 phantom_widget->SetBounds(bounds_in_screen);
workspace_event_handler_unittest.cc 110 gfx::Rect bounds_in_screen = window->GetBoundsInScreen(); local
111 EXPECT_EQ(restored_bounds.x(), bounds_in_screen.x());
112 EXPECT_EQ(restored_bounds.width(), bounds_in_screen.width());
113 EXPECT_EQ(work_area.y(), bounds_in_screen.y());
114 EXPECT_EQ(work_area.height(), bounds_in_screen.height());
122 bounds_in_screen = window->GetBoundsInScreen();
123 EXPECT_EQ(restored_bounds.ToString(), bounds_in_screen.ToString());
131 bounds_in_screen = window->GetBoundsInScreen();
132 EXPECT_EQ(restored_bounds.y(), bounds_in_screen.y());
133 EXPECT_EQ(restored_bounds.height(), bounds_in_screen.height())
    [all...]
workspace_window_resizer.cc 722 gfx::Rect bounds_in_screen = local
724 MagnetismMatcher matcher(bounds_in_screen, edges);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/frame/
immersive_mode_controller_ash.cc 209 std::vector<gfx::Rect> bounds_in_screen; local
210 bounds_in_screen.push_back(top_container_view_bounds_in_screen);
211 bounds_in_screen.push_back(find_bar_visible_bounds_in_screen_);
212 return bounds_in_screen;
  /external/chromium_org/ash/wm/
window_state.h 161 void SetRestoreBoundsInScreen(const gfx::Rect& bounds_in_screen);
320 void SetBoundsInScreen(const gfx::Rect& bounds_in_screen);
drag_window_resizer.cc 173 const gfx::Rect bounds_in_screen = local
176 gfx::IntersectRects(root_bounds_in_screen, bounds_in_screen);
191 drag_window_controller_->SetBounds(bounds_in_screen);
immersive_fullscreen_controller.cc 350 std::vector<gfx::Rect> bounds_in_screen(
352 DCHECK(!bounds_in_screen.empty());
353 int bottommost_in_screen = bounds_in_screen[0].bottom();
354 for (size_t i = 1; i < bounds_in_screen.size(); ++i) {
355 if (bounds_in_screen[i].bottom() > bottommost_in_screen)
356 bottommost_in_screen = bounds_in_screen[i].bottom();
    [all...]
window_state.cc 217 gfx::Rect bounds_in_screen = local
220 SetRestoreBoundsInScreen(bounds_in_screen);
324 const gfx::Rect& bounds_in_screen) {
327 bounds_in_screen);
immersive_fullscreen_controller_unittest.cc 60 std::vector<gfx::Rect> bounds_in_screen; variable
61 bounds_in_screen.push_back(top_container_view_->GetBoundsInScreen());
62 return bounds_in_screen;
    [all...]
  /external/chromium_org/ash/frame/
custom_frame_view_ash.cc 340 std::vector<gfx::Rect> bounds_in_screen; local
341 bounds_in_screen.push_back(
343 return bounds_in_screen;
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura_unittest.cc 648 gfx::Rect bounds_in_screen = parent_view_->GetViewBounds(); local
649 int horiz = bounds_in_screen.width() / 4;
650 int vert = bounds_in_screen.height() / 4;
651 bounds_in_screen.Inset(horiz, vert);
655 view_->InitAsPopup(parent_view_, bounds_in_screen);
658 EXPECT_EQ(final_bounds_in_screen.ToString(), bounds_in_screen.ToString());
662 bounds_in_screen = gfx::Rect(60, 60, 100, 100);
663 view_->SetBounds(bounds_in_screen);
665 EXPECT_EQ(final_bounds_in_screen.ToString(), bounds_in_screen.ToString());
    [all...]
render_widget_host_view_aura.cc 470 const gfx::Rect& bounds_in_screen) {
496 aura::client::ParentWindowWithContext(window_, root, bounds_in_screen);
505 SetBounds(bounds_in_screen);
    [all...]

Completed in 500 milliseconds