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

  /external/chromium_org/cc/layers/
layer_impl.cc 37 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id)
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* child)
    [all...]
layer_impl.h 72 class CC_EXPORT LayerImpl : public LayerAnimationValueObserver,
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* child)
    [all...]

Completed in 99 milliseconds