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

/external/chromium/base/memory/
H A Dscoped_vector.h14 // ScopedVector wraps a vector deleting the elements from its
17 class ScopedVector { class
25 ScopedVector() {} function in class:ScopedVector
26 ~ScopedVector() { reset(); }
50 void swap(ScopedVector<T>& other) { v.swap(other.v); }
60 // Lets the ScopedVector take ownership of |x|.
65 // Lets the ScopedVector take ownership of elements in [first,last).
93 DISALLOW_COPY_AND_ASSIGN(ScopedVector);

Completed in 69 milliseconds