| Index: chrome/app/chrome_main_delegate.h
|
| diff --git a/chrome/app/chrome_main_delegate.h b/chrome/app/chrome_main_delegate.h
|
| index 5b651feb5ec73d93caeb3a51ab2e0bb4c431e4a9..d0707edc41b0cfb7eb0b6e6ef3279ecdea9395cb 100644
|
| --- a/chrome/app/chrome_main_delegate.h
|
| +++ b/chrome/app/chrome_main_delegate.h
|
| @@ -10,6 +10,9 @@
|
| #include "chrome/common/chrome_content_client.h"
|
| #include "content/public/app/content_main_delegate.h"
|
|
|
| +template <typename>
|
| +class ScopedVector;
|
| +
|
| namespace base {
|
| class CommandLine;
|
| }
|
| @@ -36,7 +39,8 @@ class ChromeMainDelegate : public content::ContentMainDelegate {
|
| virtual bool DelaySandboxInitialization(
|
| const std::string& process_type) OVERRIDE;
|
| #elif defined(OS_POSIX) && !defined(OS_ANDROID)
|
| - virtual content::ZygoteForkDelegate* ZygoteStarting() OVERRIDE;
|
| + virtual void ZygoteStarting(
|
| + ScopedVector<content::ZygoteForkDelegate>* delegates) OVERRIDE;
|
| virtual void ZygoteForked() OVERRIDE;
|
| #endif
|
| virtual content::ContentBrowserClient* CreateContentBrowserClient() OVERRIDE;
|
|
|