Searched defs:ScopedPtrVector (Results 1 - 1 of 1) sorted by relevance

/external/chromium_org/cc/base/
H A Dscoped_ptr_vector.h19 // ScopedPtrVector has ownership of all elements in the vector.
21 class ScopedPtrVector { class in namespace:cc
33 // to methods on the ScopedPtrVector class to appear in the vector.
42 ScopedPtrVector() {} function in class:cc::ScopedPtrVector
44 ~ScopedPtrVector() { clear(); }
132 void insert_and_take(iterator position, ScopedPtrVector<T>* other) {
134 for (ScopedPtrVector<T>::iterator it = other->begin(); it != other->end();
148 void swap(ScopedPtrVector<T>& other) {
195 DISALLOW_COPY_AND_ASSIGN(ScopedPtrVector);

Completed in 437 milliseconds