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

  /external/chromium_org/athena/main/
athena_launcher.cc 80 virtual void OnKeyboardBoundsChanging(const gfx::Rect& new_bounds) OVERRIDE {
81 HomeCard::Get()->UpdateVirtualKeyboardBounds(new_bounds); variable
  /external/chromium_org/chrome/browser/ui/autofill/
autofill_popup_controller_interactive_uitest.cc 109 gfx::Rect new_bounds = browser()->window()->GetBounds() - gfx::Vector2d(1, 1); local
110 browser()->window()->SetBounds(new_bounds);
  /external/chromium_org/ash/display/
screen_position_controller.cc 202 gfx::Rect new_bounds = gfx::Rect(origin, bounds.size()); local
204 window->SetBounds(new_bounds);
  /external/chromium_org/extensions/browser/app_window/
app_window_geometry_cache_unittest.cc 216 gfx::Rect new_bounds; local
220 extension_id, kWindowId, &new_bounds, &new_screen_bounds, &new_state));
221 ASSERT_EQ(bounds, new_bounds);
234 gfx::Rect new_bounds; local
238 extension_id, kWindowId, &new_bounds, &new_screen_bounds, &new_state));
239 ASSERT_TRUE(new_bounds.IsEmpty());
252 gfx::Rect new_bounds; local
256 extension_id, kWindowId, &new_bounds, &new_screen_bounds, &new_state));
257 ASSERT_TRUE(new_bounds.IsEmpty());
270 gfx::Rect new_bounds; local
296 gfx::Rect new_bounds; local
    [all...]
  /external/chromium_org/ui/aura/test/
test_screen.cc 60 gfx::Rect new_bounds(bounds_in_pixel);
62 new_bounds.set_width(bounds_in_pixel.height());
63 new_bounds.set_height(bounds_in_pixel.width());
66 display_.SetScaleAndBounds(display_.device_scale_factor(), new_bounds);
73 gfx::Rect new_bounds = gfx::ToNearestRect( local
75 display_.SetScaleAndBounds(display_.device_scale_factor(), new_bounds);
117 Window* window, const gfx::Rect& old_bounds, const gfx::Rect& new_bounds) {
120 gfx::ScaleSize(new_bounds.size(), display_.device_scale_factor())));
  /external/chromium_org/ui/views/animation/
bounds_animator.cc 232 gfx::Rect new_bounds = local
234 if (new_bounds != view->bounds()) {
235 gfx::Rect total_bounds = gfx::UnionRects(new_bounds, view->bounds());
241 view->SetBoundsRect(new_bounds);
  /external/chromium_org/cc/resources/
picture_layer_tiling_set_unittest.cc 305 void SyncTilings(const gfx::Size& new_bounds,
314 *source_.get(), new_bounds, invalidation, minimum_scale);
316 void SyncTilings(const gfx::Size& new_bounds) {
318 SyncTilings(new_bounds, invalidation, 0.f);
320 void SyncTilings(const gfx::Size& new_bounds, const Region& invalidation) {
321 SyncTilings(new_bounds, invalidation, 0.f);
323 void SyncTilings(const gfx::Size& new_bounds, float minimum_scale) {
325 SyncTilings(new_bounds, invalidation, minimum_scale);
328 void VerifyTargetEqualsSource(const gfx::Size& new_bounds) {
329 ASSERT_FALSE(new_bounds.IsEmpty())
408 gfx::Size new_bounds; local
    [all...]
  /external/chromium_org/ash/wm/
window_positioner.cc 341 gfx::Rect new_bounds = bounds; local
343 &new_bounds);
344 if (new_bounds != bounds)
345 added_window->SetBounds(new_bounds);
  /external/chromium_org/chrome/browser/ui/panels/
docked_panel_collection.cc 241 const gfx::Rect& new_bounds) {
243 panel->set_full_size(new_bounds.size());
664 gfx::Rect new_bounds = old_bounds; local
665 AdjustPanelBoundsPerExpansionState(panel, &new_bounds);
667 new_bounds.set_width(
671 int x = rightmost_position - new_bounds.width();
672 new_bounds.set_x(x);
675 (x == old_bounds.x() && new_bounds.width() <= old_bounds.width()))
676 moving_left.push(std::make_pair(panel, new_bounds));
678 moving_right.push_back(std::make_pair(panel, new_bounds));
    [all...]
panel_browsertest.cc 80 std::vector<gfx::Rect> new_bounds = bounds; local
82 new_bounds[i].Offset(delta_x[i], 0);
83 return new_bounds;
455 gfx::Rect new_bounds(previous_bounds.origin(), new_size);
456 panel->SetBounds(new_bounds);
458 EXPECT_EQ(new_bounds.size(), panel->GetBounds().size());
459 EXPECT_EQ(new_bounds.size(), panel->GetRestoredBounds().size());
488 gfx::Rect new_bounds(original_bounds.origin(), new_size);
489 panel->SetBounds(new_bounds);
491 EXPECT_EQ(new_bounds.size(), panel->GetBounds().size())
    [all...]
  /external/chromium_org/ui/message_center/views/
message_center_view.cc 520 gfx::Rect new_bounds = child->bounds(); local
521 new_bounds.set_x(new_bounds.right() + kMarginBetweenItems);
522 animator_->AnimateViewTo(child, new_bounds);
    [all...]
  /external/chromium_org/chrome/browser/ui/views/panels/
panel_view.cc 367 void PanelView::SetBoundsInternal(const gfx::Rect& new_bounds, bool animate) {
368 if (bounds_ == new_bounds)
371 bounds_ = new_bounds;
384 this, panel_.get(), animation_start_bounds_, new_bounds));
409 gfx::Rect new_bounds = bounds_animator_->CurrentValueBetween( local
411 SetWidgetBounds(new_bounds);
414 void PanelView::SetWidgetBounds(const gfx::Rect& new_bounds) {
438 new_bounds.height() <= kMinimumOverlappedWindowHeight) {
447 new_bounds.height() > kMinimumOverlappedWindowHeight) {
457 GetWidget()->SetBounds(new_bounds);
865 gfx::Rect new_bounds = window_->GetWindowBoundsInScreen(); local
1035 panel()->collection()->OnPanelResizedByMouse(panel(), new_bounds); local
    [all...]
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_strip.cc 1738 gfx::Rect new_bounds = bounds[i]; local
1763 gfx::Rect new_bounds = tab->bounds(); local
    [all...]

Completed in 731 milliseconds