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.cc17 gfx::Rect* bounds_in_screen,
20 DCHECK(bounds_in_screen);
22 DCHECK(bounds_in_screen->IsEmpty());
26 bool is_saved_bounds = GetSavedWindowBounds(bounds_in_screen, show_state);
29 display = screen_->GetDisplayMatching(*bounds_in_screen);
31 // If there is no saved bounds (hence bounds_in_screen is empty), use the
34 *bounds_in_screen);
35 *bounds_in_screen = ash::WindowPositioner::GetDefaultWindowBounds(display);
49 bounds_in_screen->AdjustToFit(display.work_area());
63 bounds_in_screen,
16 GetTabbedBrowserBoundsAsh( gfx::Rect* bounds_in_screen, ui::WindowShowState* show_state) const argument
[all...]
/external/chromium_org/ash/wm/workspace/
H A Dphantom_window_controller.h38 const gfx::Rect& bounds_in_screen() const { return bounds_in_screen_; } function in class:ash::internal::PhantomWindowController
40 // Animates the phantom window towards |bounds_in_screen|.
45 void Show(const gfx::Rect& bounds_in_screen);
68 const gfx::Rect& bounds_in_screen);
H A Dworkspace_event_handler_unittest.cc107 gfx::Rect bounds_in_screen = window->GetBoundsInScreen(); local
108 EXPECT_EQ(restored_bounds.x(), bounds_in_screen.x());
109 EXPECT_EQ(restored_bounds.width(), bounds_in_screen.width());
110 EXPECT_EQ(work_area.y(), bounds_in_screen.y());
111 EXPECT_EQ(work_area.height(), bounds_in_screen.height());
119 bounds_in_screen = window->GetBoundsInScreen();
120 EXPECT_EQ(restored_bounds.ToString(), bounds_in_screen.ToString());
131 bounds_in_screen = window->GetBoundsInScreen();
132 EXPECT_EQ(restored_bounds.ToString(), bounds_in_screen.ToString());
137 bounds_in_screen
[all...]
H A Dphantom_window_controller.cc103 void PhantomWindowController::Show(const gfx::Rect& bounds_in_screen) { argument
104 if (bounds_in_screen == bounds_in_screen_)
106 bounds_in_screen_ = bounds_in_screen;
107 aura::Window* target_root = wm::GetRootWindowMatching(bounds_in_screen);
176 const gfx::Rect& bounds_in_screen) {
196 phantom_widget->SetBounds(bounds_in_screen);
174 CreatePhantomWidget( aura::Window* root_window, const gfx::Rect& bounds_in_screen) argument
H A Dworkspace_window_resizer.cc568 return snap_phantom_window_controller_->bounds_in_screen();
740 gfx::Rect bounds_in_screen = local
742 MagnetismMatcher matcher(bounds_in_screen, edges);
/external/chromium_org/ash/wm/
H A Ddrag_window_resizer.cc181 const gfx::Rect bounds_in_screen = local
184 gfx::IntersectRects(root_bounds_in_screen, bounds_in_screen);
199 drag_window_controller_->SetBounds(bounds_in_screen);
H A Dcustom_frame_view_ash.cc321 std::vector<gfx::Rect> bounds_in_screen; local
322 bounds_in_screen.push_back(
326 bounds_in_screen.push_back(maximize_bubble_->GetWindowBoundsInScreen());
328 return bounds_in_screen;
H A Dimmersive_fullscreen_controller_unittest.cc58 std::vector<gfx::Rect> bounds_in_screen; variable
59 bounds_in_screen.push_back(top_container_view_->GetBoundsInScreen());
60 return bounds_in_screen;
H A Dwindow_state.cc211 const gfx::Rect& bounds_in_screen) {
214 bounds_in_screen);
219 gfx::Rect bounds_in_screen = local
222 SetRestoreBoundsInScreen(bounds_in_screen);
210 SetBoundsInScreen( const gfx::Rect& bounds_in_screen) argument
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dimmersive_mode_controller_ash.cc234 std::vector<gfx::Rect> bounds_in_screen; local
235 bounds_in_screen.push_back(top_container_view_bounds_in_screen);
236 bounds_in_screen.push_back(find_bar_visible_bounds_in_screen_);
237 return bounds_in_screen;
/external/chromium_org/content/browser/renderer_host/
H A Drender_widget_host_view_aura_unittest.cc294 gfx::Rect bounds_in_screen = parent_view_->GetViewBounds(); local
295 int horiz = bounds_in_screen.width() / 4;
296 int vert = bounds_in_screen.height() / 4;
297 bounds_in_screen.Inset(horiz, vert);
301 view_->InitAsPopup(parent_view_, bounds_in_screen);
304 EXPECT_EQ(final_bounds_in_screen.ToString(), bounds_in_screen.ToString());
308 bounds_in_screen = gfx::Rect(60, 60, 100, 100);
309 view_->SetBounds(bounds_in_screen);
311 EXPECT_EQ(final_bounds_in_screen.ToString(), bounds_in_screen.ToString());
H A Drender_widget_host_view_aura.cc515 const gfx::Rect& bounds_in_screen) {
535 aura::client::ParentWindowWithContext(window_, root, bounds_in_screen);
541 SetBounds(bounds_in_screen);
513 InitAsPopup( RenderWidgetHostView* parent_host_view, const gfx::Rect& bounds_in_screen) argument

Completed in 733 milliseconds