| Index: content/zygote/zygote_main.h
|
| diff --git a/content/zygote/zygote_main.h b/content/zygote/zygote_main.h
|
| index 119210f14d4fe49372fba5277ece2833c1505144..f5a9a850866519557873ca26f3eb2644f5d22c78 100644
|
| --- a/content/zygote/zygote_main.h
|
| +++ b/content/zygote/zygote_main.h
|
| @@ -5,16 +5,17 @@
|
| #ifndef CONTENT_ZYGOTE_ZYGOTE_MAIN_H_
|
| #define CONTENT_ZYGOTE_ZYGOTE_MAIN_H_
|
|
|
| -template <typename>
|
| -class ScopedVector;
|
| +#include <memory>
|
| +#include <vector>
|
|
|
| namespace content {
|
|
|
| struct MainFunctionParams;
|
| class ZygoteForkDelegate;
|
|
|
| -bool ZygoteMain(const MainFunctionParams& params,
|
| - ScopedVector<ZygoteForkDelegate> fork_delegates);
|
| +bool ZygoteMain(
|
| + const MainFunctionParams& params,
|
| + std::vector<std::unique_ptr<ZygoteForkDelegate>> fork_delegates);
|
|
|
| } // namespace content
|
|
|
|
|