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

  /external/chromium_org/ash/wm/workspace/
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/ash/wm/
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_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...]
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);
  /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/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...]

Completed in 144 milliseconds