Searched defs:LayerImpl (Results 1 - 2 of 2) sorted by last modified time

/external/chromium_org/cc/layers/
H A Dlayer_impl.cc37 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id) function in class:cc::LayerImpl
89 LayerImpl::~LayerImpl() {
101 TRACE_DISABLED_BY_DEFAULT("cc.debug"), "cc::LayerImpl", this);
104 void LayerImpl::AddChild(scoped_ptr<LayerImpl> child) {
111 scoped_ptr<LayerImpl> LayerImpl::RemoveChild(LayerImpl* chil
[all...]
H A Dlayer_impl.h72 class CC_EXPORT LayerImpl : public LayerAnimationValueObserver, class in namespace:cc
91 static scoped_ptr<LayerImpl> Create(LayerTreeImpl* tree_impl, int id) {
92 return make_scoped_ptr(new LayerImpl(tree_impl, id));
95 virtual ~LayerImpl();
120 LayerImpl* parent() { return parent_; }
121 const LayerImpl* parent() const { return parent_; }
124 LayerImpl* child_at(size_t index) const { return children_[index]; }
125 void AddChild(scoped_ptr<LayerImpl> child);
126 scoped_ptr<LayerImpl> RemoveChild(LayerImpl* chil
[all...]

Completed in 69 milliseconds