diff options
Diffstat (limited to 'cc/input/layer_selection_bound.h')
-rw-r--r-- | cc/input/layer_selection_bound.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cc/input/layer_selection_bound.h b/cc/input/layer_selection_bound.h index 30b2c80..21d5284 100644 --- a/cc/input/layer_selection_bound.h +++ b/cc/input/layer_selection_bound.h @@ -7,7 +7,7 @@ #include "cc/base/cc_export.h" #include "cc/input/selection_bound_type.h" -#include "ui/gfx/geometry/rect_f.h" +#include "ui/gfx/geometry/point_f.h" namespace cc { @@ -17,7 +17,8 @@ struct CC_EXPORT LayerSelectionBound { ~LayerSelectionBound(); SelectionBoundType type; - gfx::RectF layer_rect; + gfx::PointF edge_top; + gfx::PointF edge_bottom; int layer_id; }; |