summaryrefslogtreecommitdiffstats
path: root/chromium/content/public/app/content_main_delegate.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/content/public/app/content_main_delegate.h')
-rw-r--r--chromium/content/public/app/content_main_delegate.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/chromium/content/public/app/content_main_delegate.h b/chromium/content/public/app/content_main_delegate.h
index 9b94b98d46c..6191d7815e6 100644
--- a/chromium/content/public/app/content_main_delegate.h
+++ b/chromium/content/public/app/content_main_delegate.h
@@ -10,6 +10,9 @@
#include "build/build_config.h"
#include "content/common/content_export.h"
+template <typename>
+class ScopedVector;
+
namespace content {
class ContentBrowserClient;
@@ -65,8 +68,9 @@ class CONTENT_EXPORT ContentMainDelegate {
#elif defined(OS_POSIX) && !defined(OS_ANDROID) && !defined(OS_IOS)
// Tells the embedder that the zygote process is starting, and allows it to
- // specify a zygote delegate if it wishes.
- virtual ZygoteForkDelegate* ZygoteStarting();
+ // specify one or more zygote delegates if it wishes by storing them in
+ // |*delegates|.
+ virtual void ZygoteStarting(ScopedVector<ZygoteForkDelegate>* delegates);
// Called every time the zygote process forks.
virtual void ZygoteForked() {}