OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CONTENT_PUBLIC_APP_CONTENT_MAIN_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_APP_CONTENT_MAIN_DELEGATE_H_ |
6 #define CONTENT_PUBLIC_APP_CONTENT_MAIN_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_APP_CONTENT_MAIN_DELEGATE_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <string> | 9 #include <string> |
10 | 10 |
11 #include "build/build_config.h" | 11 #include "build/build_config.h" |
12 | 12 |
13 struct MainFunctionParams; | 13 struct MainFunctionParams; |
14 class ZygoteForkDelegate; | |
15 | 14 |
16 namespace content { | 15 namespace content { |
17 | 16 |
| 17 class ZygoteForkDelegate; |
| 18 |
18 class ContentMainDelegate { | 19 class ContentMainDelegate { |
19 public: | 20 public: |
20 virtual ~ContentMainDelegate() {} | 21 virtual ~ContentMainDelegate() {} |
21 | 22 |
22 // Tells the embedder that the absolute basic startup has been done, i.e. it's | 23 // Tells the embedder that the absolute basic startup has been done, i.e. it's |
23 // now safe to create singletons and check the command line. Return true if | 24 // now safe to create singletons and check the command line. Return true if |
24 // the process should exit afterwards, and if so, |exit_code| should be set. | 25 // the process should exit afterwards, and if so, |exit_code| should be set. |
25 // This is the place for embedder to do the things that must happen at the | 26 // This is the place for embedder to do the things that must happen at the |
26 // start. Most of its startup code should be in the methods below. | 27 // start. Most of its startup code should be in the methods below. |
27 virtual bool BasicStartupComplete(int* exit_code) = 0; | 28 virtual bool BasicStartupComplete(int* exit_code) = 0; |
(...skipping 26 matching lines...) Expand all Loading... |
54 virtual bool ShouldSendMachPort(const std::string& process_type) = 0; | 55 virtual bool ShouldSendMachPort(const std::string& process_type) = 0; |
55 | 56 |
56 // Allows the embedder to override initializing the sandbox. This is needed | 57 // Allows the embedder to override initializing the sandbox. This is needed |
57 // because some processes might not want to enable it right away or might not | 58 // because some processes might not want to enable it right away or might not |
58 // want it at all. | 59 // want it at all. |
59 virtual bool DelaySandboxInitialization(const std::string& process_type) = 0; | 60 virtual bool DelaySandboxInitialization(const std::string& process_type) = 0; |
60 | 61 |
61 #elif defined(OS_POSIX) | 62 #elif defined(OS_POSIX) |
62 // Tells the embedder that the zygote process is starting, and allows it to | 63 // Tells the embedder that the zygote process is starting, and allows it to |
63 // specify a zygote delegate if it wishes. | 64 // specify a zygote delegate if it wishes. |
64 virtual ZygoteForkDelegate* ZygoteStarting() = 0; | 65 virtual content::ZygoteForkDelegate* ZygoteStarting() = 0; |
65 | 66 |
66 // Called every time the zygote process forks. | 67 // Called every time the zygote process forks. |
67 virtual void ZygoteForked() = 0; | 68 virtual void ZygoteForked() = 0; |
68 #endif // OS_MACOSX | 69 #endif // OS_MACOSX |
69 }; | 70 }; |
70 | 71 |
71 } // namespace content | 72 } // namespace content |
72 | 73 |
73 #endif // CONTENT_PUBLIC_APP_CONTENT_MAIN_DELEGATE_H_ | 74 #endif // CONTENT_PUBLIC_APP_CONTENT_MAIN_DELEGATE_H_ |
OLD | NEW |