Searched defs:bounds_in_screen (Results 1 - 12 of 12) sorted by relevance

/external/chromium_org/chrome/browser/ui/window_sizer/
H A Dwindow_sizer_ash.cc70 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,
69 GetTabbedBrowserBoundsAsh( gfx::Rect* bounds_in_screen, ui::WindowShowState* show_state) const argument
[all...]
/external/chromium_org/ash/wm/workspace/
H A Dphantom_window_controller.cc83 void PhantomWindowController::Show(const gfx::Rect& bounds_in_screen) { argument
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);
106 CreatePhantomWidget( aura::Window* root_window, const gfx::Rect& bounds_in_screen) argument
H A Dworkspace_event_handler_unittest.cc110 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
[all...]
H A Dworkspace_window_resizer.cc734 gfx::Rect bounds_in_screen = local
736 MagnetismMatcher matcher(bounds_in_screen, edges);
/external/chromium_org/ash/wm/
H A Ddrag_window_resizer.cc174 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);
H A Dimmersive_fullscreen_controller_unittest.cc60 std::vector<gfx::Rect> bounds_in_screen; variable
61 bounds_in_screen.push_back(top_container_view_->GetBoundsInScreen());
62 return bounds_in_screen;
H A Dwindow_state.cc224 gfx::Rect bounds_in_screen = local
227 SetRestoreBoundsInScreen(bounds_in_screen);
331 const gfx::Rect& bounds_in_screen) {
334 bounds_in_screen);
330 SetBoundsInScreen( const gfx::Rect& bounds_in_screen) argument
/external/chromium_org/ui/views/widget/desktop_aura/
H A Ddesktop_window_tree_host_x11_interactive_uitest.cc99 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/chrome/browser/ui/views/frame/
H A Dimmersive_mode_controller_ash.cc209 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/frame/
H A Dcustom_frame_view_ash.cc357 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/
H A Drender_widget_host_view_aura_unittest.cc655 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());
H A Drender_widget_host_view_aura.cc497 const gfx::Rect& bounds_in_screen) {
523 aura::client::ParentWindowWithContext(window_, root, bounds_in_screen);
532 SetBounds(bounds_in_screen);
495 InitAsPopup( RenderWidgetHostView* parent_host_view, const gfx::Rect& bounds_in_screen) argument

Completed in 1273 milliseconds