Index: base/test/test_reg_util_win.h |
diff --git a/base/test/test_reg_util_win.h b/base/test/test_reg_util_win.h |
index 5f23b7f3b7374867adae340aacbc3dfffdc90b3d..c264402ab8ceb7a2b72ae86ce6c4eb0757d9c16a 100644 |
--- a/base/test/test_reg_util_win.h |
+++ b/base/test/test_reg_util_win.h |
@@ -6,9 +6,10 @@ |
#define BASE_TEST_TEST_REG_UTIL_WIN_H_ |
// Registry utility functions used only by tests. |
+#include <vector> |
#include "base/basictypes.h" |
-#include "base/memory/scoped_vector.h" |
+#include "base/memory/scoped_ptr.h" |
#include "base/strings/string16.h" |
#include "base/time/time.h" |
#include "base/win/registry.h" |
@@ -63,7 +64,7 @@ class RegistryOverrideManager { |
base::string16 guid_; |
base::string16 test_key_root_; |
- ScopedVector<ScopedRegistryKeyOverride> overrides_; |
+ std::vector<scoped_ptr<ScopedRegistryKeyOverride>> overrides_; |
DISALLOW_COPY_AND_ASSIGN(RegistryOverrideManager); |
}; |