Index: content/app/content_main_runner.cc |
diff --git a/content/app/content_main_runner.cc b/content/app/content_main_runner.cc |
index 0994d24f09aa23e82eb6247acd2afd029841d9ea..6dd4c1f75ac2e22d892c9a7fca9042dde953740d 100644 |
--- a/content/app/content_main_runner.cc |
+++ b/content/app/content_main_runner.cc |
@@ -11,6 +11,7 @@ |
#include <memory> |
#include <string> |
#include <utility> |
+#include <vector> |
#include "base/allocator/allocator_check.h" |
#include "base/allocator/allocator_extension.h" |
@@ -314,7 +315,7 @@ int RunZygote(const MainFunctionParams& main_function_params, |
{ switches::kUtilityProcess, UtilityMain }, |
}; |
- ScopedVector<ZygoteForkDelegate> zygote_fork_delegates; |
+ std::vector<std::unique_ptr<ZygoteForkDelegate>> zygote_fork_delegates; |
if (delegate) { |
delegate->ZygoteStarting(&zygote_fork_delegates); |
media::InitializeMediaLibrary(); |