Index: components/nacl/zygote/nacl_fork_delegate_linux.h |
diff --git a/components/nacl/zygote/nacl_fork_delegate_linux.h b/components/nacl/zygote/nacl_fork_delegate_linux.h |
index 4dd5366e66a090acd2f7520a3db07297738da0f0..e64fb1457789cfbaad291c6ab2b91630a3c4573d 100644 |
--- a/components/nacl/zygote/nacl_fork_delegate_linux.h |
+++ b/components/nacl/zygote/nacl_fork_delegate_linux.h |
@@ -5,6 +5,7 @@ |
#ifndef COMPONENTS_NACL_ZYGOTE_NACL_FORK_DELEGATE_LINUX_H_ |
#define COMPONENTS_NACL_ZYGOTE_NACL_FORK_DELEGATE_LINUX_H_ |
+#include <memory> |
#include <string> |
#include <vector> |
@@ -17,14 +18,11 @@ namespace base { |
struct LaunchOptions; |
} |
-template <typename> |
-class ScopedVector; |
- |
namespace nacl { |
// Appends any ZygoteForkDelegate instances needed by NaCl to |*delegates|. |
void AddNaClZygoteForkDelegates( |
- ScopedVector<content::ZygoteForkDelegate>* delegates); |
+ std::vector<std::unique_ptr<content::ZygoteForkDelegate>>* delegates); |
// The NaClForkDelegate is created during Chrome linux zygote |
// initialization, and provides "fork()" functionality with |