| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BASE_SCOPED_VECTOR_H_ | 5 #ifndef BASE_MEMORY_SCOPED_VECTOR_H_ |
| 6 #define BASE_SCOPED_VECTOR_H_ | 6 #define BASE_MEMORY_SCOPED_VECTOR_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <vector> | 9 #include <vector> |
| 10 | 10 |
| 11 #include "base/basictypes.h" | 11 #include "base/basictypes.h" |
| 12 #include "base/stl_util-inl.h" | 12 #include "base/stl_util-inl.h" |
| 13 | 13 |
| 14 // ScopedVector wraps a vector deleting the elements from its | 14 // ScopedVector wraps a vector deleting the elements from its |
| 15 // destructor. | 15 // destructor. |
| 16 template <class T> | 16 template <class T> |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 // Like |erase()|, but doesn't delete the elements in [first, last). | 80 // Like |erase()|, but doesn't delete the elements in [first, last). |
| 81 iterator weak_erase(iterator first, iterator last) { | 81 iterator weak_erase(iterator first, iterator last) { |
| 82 return v.erase(first, last); | 82 return v.erase(first, last); |
| 83 } | 83 } |
| 84 private: | 84 private: |
| 85 std::vector<T*> v; | 85 std::vector<T*> v; |
| 86 | 86 |
| 87 DISALLOW_COPY_AND_ASSIGN(ScopedVector); | 87 DISALLOW_COPY_AND_ASSIGN(ScopedVector); |
| 88 }; | 88 }; |
| 89 | 89 |
| 90 #endif // BASE_SCOPED_VECTOR_H_ | 90 #endif // BASE_MEMORY_SCOPED_VECTOR_H_ |
| OLD | NEW |