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 33 LayerImpl::LayerImpl(LayerTreeImpl* tree_impl, int id)
81 LayerImpl::~LayerImpl() {
92 for (std::set<LayerImpl*>::iterator it = scroll_children_->begin();
101 for (std::set<LayerImpl*>::iterator it = clip_children_->begin();
110 void LayerImpl::AddChild(scoped_ptr<LayerImpl> child) {
117 scoped_ptr<LayerImpl> LayerImpl::RemoveChild(LayerImpl* child)
    [all...]
layer_impl.h 65 class CC_EXPORT LayerImpl : public LayerAnimationValueObserver,
72 static scoped_ptr<LayerImpl> Create(LayerTreeImpl* tree_impl, int id) {
73 return make_scoped_ptr(new LayerImpl(tree_impl, id));
76 virtual ~LayerImpl();
92 LayerImpl* parent() { return parent_; }
93 const LayerImpl* parent() const { return parent_; }
96 LayerImpl* child_at(size_t index) const { return children_[index]; }
97 void AddChild(scoped_ptr<LayerImpl> child);
98 scoped_ptr<LayerImpl> RemoveChild(LayerImpl* child)
    [all...]

Completed in 49 milliseconds