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

  /external/chromium_org/apps/
size_constraints.cc 25 const gfx::Insets& frame_insets) {
29 : size_constraints.width() + frame_insets.width(),
32 : size_constraints.height() + frame_insets.height());
size_constraints.h 28 const gfx::Insets& frame_insets);
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...]
app_window.h 183 gfx::Rect GetInitialWindowBounds(const gfx::Insets& frame_insets) const;
188 gfx::Size GetContentMinimumSize(const gfx::Insets& frame_insets) const;
189 gfx::Size GetContentMaximumSize(const gfx::Insets& frame_insets) const;
190 gfx::Size GetWindowMinimumSize(const gfx::Insets& frame_insets) const;
191 gfx::Size GetWindowMaximumSize(const gfx::Insets& frame_insets) const;
  /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));

Completed in 413 milliseconds