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

  /external/chromium_org/chrome/browser/ui/window_sizer/
window_sizer_ash.cc 70 gfx::Rect* bounds_in_screen,
73 DCHECK(bounds_in_screen);
75 DCHECK(bounds_in_screen->IsEmpty());
79 bool is_saved_bounds = GetSavedWindowBounds(bounds_in_screen, show_state);
82 display = screen_->GetDisplayMatching(*bounds_in_screen);
84 // If there is no saved bounds (hence bounds_in_screen is empty), use the
87 *bounds_in_screen);
88 *bounds_in_screen = ash::WindowPositioner::GetDefaultWindowBounds(display);
102 bounds_in_screen->AdjustToFit(display.work_area());
116 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 734 gfx::Rect bounds_in_screen = local
736 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 174 const gfx::Rect bounds_in_screen = local
177 gfx::IntersectRects(root_bounds_in_screen, bounds_in_screen);
192 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 224 gfx::Rect bounds_in_screen = local
227 SetRestoreBoundsInScreen(bounds_in_screen);
331 const gfx::Rect& bounds_in_screen) {
334 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/ui/views/widget/desktop_aura/
desktop_window_tree_host_x11_interactive_uitest.cc 99 gfx::Rect bounds_in_screen = desktop_host->window()->GetBoundsInScreen(); local
109 xev.xmotion.x = point_in_screen.x() - bounds_in_screen.x();
110 xev.xmotion.y = point_in_screen.y() - bounds_in_screen.y();
  /external/chromium_org/ash/frame/
custom_frame_view_ash.cc 357 std::vector<gfx::Rect> bounds_in_screen; local
358 bounds_in_screen.push_back(
360 return bounds_in_screen;
  /external/chromium_org/content/browser/renderer_host/
render_widget_host_view_aura_unittest.cc 655 gfx::Rect bounds_in_screen = parent_view_->GetViewBounds(); local
656 int horiz = bounds_in_screen.width() / 4;
657 int vert = bounds_in_screen.height() / 4;
658 bounds_in_screen.Inset(horiz, vert);
662 view_->InitAsPopup(parent_view_, bounds_in_screen);
665 EXPECT_EQ(final_bounds_in_screen.ToString(), bounds_in_screen.ToString());
669 bounds_in_screen = gfx::Rect(60, 60, 100, 100);
670 view_->SetBounds(bounds_in_screen);
672 EXPECT_EQ(final_bounds_in_screen.ToString(), bounds_in_screen.ToString());
    [all...]
render_widget_host_view_aura.cc 497 const gfx::Rect& bounds_in_screen) {
523 aura::client::ParentWindowWithContext(window_, root, bounds_in_screen);
532 SetBounds(bounds_in_screen);
    [all...]

Completed in 536 milliseconds