Home | History | Annotate | Download | only in core

Lines Matching refs:layer

11 #include "ui/compositor/layer.h"
80 // Returns |layer|'s bounds after applying the layer's current transform.
81 gfx::RectF GetTransformedLayerBounds(const ui::Layer& layer);
92 ui::Layer* layer() { return layer_.get(); }
98 // Visible to allow independent layer animations and for testing.
99 ui::Layer* top_left_layer() const { return top_left_layer_.get(); }
100 ui::Layer* top_layer() const { return top_layer_.get(); }
101 ui::Layer* top_right_layer() const { return top_right_layer_.get(); }
102 ui::Layer* left_layer() const { return left_layer_.get(); }
103 ui::Layer* center_layer() const { return center_layer_.get(); }
104 ui::Layer* right_layer() const { return right_layer_.get(); }
105 ui::Layer* bottom_left_layer() const { return bottom_left_layer_.get(); }
106 ui::Layer* bottom_layer() const { return bottom_layer_.get(); }
107 ui::Layer* bottom_right_layer() const { return bottom_right_layer_.get(); }
129 // Delegate responsible for painting a specific image on a layer.
135 // Clips |layer| to |clip_rect|. Triggers a repaint if the clipping
137 void SetClipRect(const gfx::Rect& clip_rect, ui::Layer* layer);
161 // passed-in layer to |layer_|. If image is NULL resets |layer_ptr| and
162 // |painter_ptr| and removes any existing layer from |layer_|.
167 scoped_ptr<ui::Layer>* layer_ptr,
171 // Layer that contains all of the image layers.
172 scoped_ptr<ui::Layer> layer_;
194 scoped_ptr<ui::Layer> top_left_layer_;
195 scoped_ptr<ui::Layer> top_layer_;
196 scoped_ptr<ui::Layer> top_right_layer_;
197 scoped_ptr<ui::Layer> left_layer_;
198 scoped_ptr<ui::Layer> center_layer_;
199 scoped_ptr<ui::Layer> right_layer_;
200 scoped_ptr<ui::Layer> bottom_left_layer_;
201 scoped_ptr<ui::Layer> bottom_layer_;
202 scoped_ptr<ui::Layer> bottom_right_layer_;