/external/chromium/chrome/browser/ui/views/ |
toolbar_view.cc | 445 int child_y = std::min(kVertSpacing, height()); local 448 std::min(back_->GetPreferredSize().height(), height() - child_y); 459 back_->SetBounds(0, child_y, back_width + kEdgeSpacing, child_height); 461 back_->SetBounds(kEdgeSpacing, child_y, back_width, child_height); 464 child_y, forward_->GetPreferredSize().width(), child_height); 467 child_y, reload_->GetPreferredSize().width(), child_height); 471 home_->SetBounds(reload_->x() + reload_->width() + kButtonSpacing, child_y, 475 home_->SetBounds(reload_->x() + reload_->width(), child_y, 0, child_height); 484 location_bar_->SetBounds(location_x, child_y, std::max(available_width, 0), 502 app_menu_->SetBounds(browser_actions_->x() + browser_actions_width, child_y, [all...] |
/external/chromium_org/chrome/browser/ui/views/toolbar/ |
toolbar_view.cc | 540 // Set child_y such that buttons appear vertically centered. We put any excess 544 int child_y = (height() - child_height + 1) / 2; local 556 back_->SetBounds(0, child_y, back_width + kLeftEdgeSpacing, child_height); 559 back_->SetBounds(kLeftEdgeSpacing, child_y, back_width, child_height); 565 child_y, forward_->GetPreferredSize().width(), child_height); 568 child_y, reload_->GetPreferredSize().width(), child_height); 573 child_y, home_->GetPreferredSize().width(), child_height); 576 home_->SetBounds(reload_->x() + reload_->width(), child_y, 0, child_height); 602 child_y, 624 app_menu_->SetBounds(browser_actions_->x() + browser_actions_width, child_y, [all...] |
/external/chromium_org/chrome/browser/ui/gtk/tab_contents/ |
chrome_web_contents_view_delegate_gtk.cc | 191 int child_y = std::max((allocation->height - requisition.height) / 2, 0); local 192 g_value_set_int(&value, child_y);
|
/external/chromium_org/chrome/browser/ui/gtk/ |
tab_contents_container_gtk.cc | 207 int child_y = std::max(allocation->height - requisition.height, 0); local 208 g_value_set_int(&value, child_y + status->y_offset());
|
/external/chromium/chrome/browser/ui/gtk/ |
tab_contents_container_gtk.cc | 242 int child_y = std::max(allocation->height - requisition.height, 0); local 243 g_value_set_int(&value, child_y + status->y_offset());
|
/external/chromium/chrome/browser/tab_contents/ |
tab_contents_view_gtk.cc | 452 int child_y = std::max((allocation->height - requisition.height) / 2, 0); local 453 g_value_set_int(&value, child_y);
|