Home | History | Annotate | Download | only in apps

Lines Matching refs:gfx

8 #include "ui/gfx/geometry/size.h"
10 namespace gfx {
23 SizeConstraints(const gfx::Size& min_size, const gfx::Size& max_size);
27 static gfx::Size AddFrameToConstraints(const gfx::Size& size_constraints,
28 const gfx::Insets& frame_insets);
31 gfx::Size ClampSize(gfx::Size size) const;
33 // When gfx::Size is used as a min/max size, a zero represents an unbounded
35 // Note we can't use gfx::Size::IsEmpty as it returns true if either width
44 gfx::Size GetMaximumSize() const;
45 gfx::Size GetMinimumSize() const;
47 void set_minimum_size(const gfx::Size& min_size);
48 void set_maximum_size(const gfx::Size& max_size);
51 gfx::Size minimum_size_;
52 gfx::Size maximum_size_;