Index: chrome/installer/util/scoped_user_protocol_entry.h |
diff --git a/chrome/installer/util/scoped_user_protocol_entry.h b/chrome/installer/util/scoped_user_protocol_entry.h |
index 0ca2b5ef040a80ab9f1dd6c58910cec36ce7ee1c..eee58d2b9e5bd844630dfe0a681f05c064d632a5 100644 |
--- a/chrome/installer/util/scoped_user_protocol_entry.h |
+++ b/chrome/installer/util/scoped_user_protocol_entry.h |
@@ -5,8 +5,10 @@ |
#ifndef CHROME_INSTALLER_UTIL_SCOPED_USER_PROTOCOL_ENTRY_H_ |
#define CHROME_INSTALLER_UTIL_SCOPED_USER_PROTOCOL_ENTRY_H_ |
+#include <memory> |
+#include <vector> |
+ |
#include "base/macros.h" |
-#include "base/memory/scoped_vector.h" |
class RegistryEntry; |
@@ -24,7 +26,7 @@ class ScopedUserProtocolEntry { |
~ScopedUserProtocolEntry(); |
private: |
- ScopedVector<RegistryEntry> entries_; |
+ std::vector<std::unique_ptr<RegistryEntry>> entries_; |
DISALLOW_COPY_AND_ASSIGN(ScopedUserProtocolEntry); |
}; |