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

  /external/chromium_org/chrome/browser/extensions/api/app_current_window_internal/
app_current_window_internal_api.cc 209 gfx::Insets frame_insets = window->GetBaseWindow()->GetFrameInsets(); local
222 window_bounds.set_width(*bounds_spec.width + frame_insets.width());
224 window_bounds.set_height(*bounds_spec.height + frame_insets.height());
232 window_bounds.Inset(frame_insets);
234 window_bounds.Inset(-frame_insets);
245 window->GetBaseWindow()->GetContentMinimumSize(), frame_insets),
247 window->GetBaseWindow()->GetContentMaximumSize(), frame_insets));
  /external/chromium_org/chrome/browser/ui/views/apps/
chrome_native_app_window_views.cc 233 gfx::Insets frame_insets = GetFrameInsets(); local
234 gfx::Rect window_bounds = create_params.GetInitialWindowBounds(frame_insets);
235 SetContentSizeConstraints(create_params.GetContentMinimumSize(frame_insets),
236 create_params.GetContentMaximumSize(frame_insets));
  /external/chromium_org/apps/
app_window.cc 109 const gfx::Insets& frame_insets) {
113 content_constraints.width() + frame_insets.width());
117 content_constraints.height() + frame_insets.height());
126 const gfx::Insets& frame_insets) {
130 std::max(0, window_constraints.width() - frame_insets.width()));
134 std::max(0, window_constraints.height() - frame_insets.height()));
173 const gfx::Insets& frame_insets) const {
177 combined_bounds.set_x(content_spec.bounds.x() - frame_insets.left());
179 combined_bounds.set_y(content_spec.bounds.y() - frame_insets.top());
182 content_spec.bounds.width() + frame_insets.width())
343 gfx::Insets frame_insets = native_app_window_->GetFrameInsets(); local
781 gfx::Insets frame_insets = native_app_window_->GetFrameInsets(); local
    [all...]

Completed in 225 milliseconds