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

  /external/chromium_org/ash/wm/panels/
panel_window_resizer.cc 154 gfx::Rect launcher_bounds = ScreenAsh::ConvertRectFromScreen( local
160 if (bounds.bottom() >= (launcher_bounds.y() -
163 offset->set_y(launcher_bounds.y() - bounds.height() - bounds.y());
167 if (bounds.x() <= (launcher_bounds.right() +
170 offset->set_x(launcher_bounds.right() - bounds.x());
174 if (bounds.right() >= (launcher_bounds.x() -
177 offset->set_x(launcher_bounds.x() - bounds.width() - bounds.x());
181 if (bounds.y() <= (launcher_bounds.bottom() +
184 offset->set_y(launcher_bounds.bottom() - bounds.y());
panel_layout_manager_unittest.cc 131 gfx::Rect launcher_bounds = launcher->shelf_widget()-> local
149 EXPECT_EQ(launcher_bounds.y(), window_bounds.bottom());
152 EXPECT_EQ(launcher_bounds.right(), window_bounds.x());
155 EXPECT_EQ(launcher_bounds.x(), window_bounds.right());
158 EXPECT_EQ(launcher_bounds.bottom(), window_bounds.y());
panel_layout_manager.cc 568 gfx::Rect launcher_bounds = ash::ScreenAsh::ConvertRectFromScreen( local
585 !BoundsAdjacent(panel->bounds(), launcher_bounds))) {
662 bounds.set_y(launcher_bounds.y() - bounds.height());
665 bounds.set_x(launcher_bounds.right());
668 bounds.set_x(launcher_bounds.x() - bounds.width());
671 bounds.set_y(launcher_bounds.bottom());

Completed in 479 milliseconds