| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ | 5 #ifndef CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ |
| 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ | 6 #define CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ |
| 7 | 7 |
| 8 #include "content/common/content_export.h" | 8 #include "content/common/content_export.h" |
| 9 #include "ipc/ipc_listener.h" | 9 #include "ipc/ipc_listener.h" |
| 10 | 10 |
| 11 namespace shell { |
| 12 class InterfaceProvider; |
| 13 class InterfaceRegistry; |
| 14 } |
| 15 |
| 11 namespace content { | 16 namespace content { |
| 12 | 17 |
| 13 class ServiceRegistry; | 18 class ServiceRegistry; |
| 14 | 19 |
| 15 // Interface that all users of BrowserChildProcessHost need to provide. | 20 // Interface that all users of BrowserChildProcessHost need to provide. |
| 16 class CONTENT_EXPORT BrowserChildProcessHostDelegate : public IPC::Listener { | 21 class CONTENT_EXPORT BrowserChildProcessHostDelegate : public IPC::Listener { |
| 17 public: | 22 public: |
| 18 ~BrowserChildProcessHostDelegate() override {} | 23 ~BrowserChildProcessHostDelegate() override {} |
| 19 | 24 |
| 20 // Delegates return true if it's ok to shut down the child process (which is | 25 // Delegates return true if it's ok to shut down the child process (which is |
| 21 // the default return value). The exception is if the host is in the middle of | 26 // the default return value). The exception is if the host is in the middle of |
| 22 // sending a request to the process, in which case the other side might think | 27 // sending a request to the process, in which case the other side might think |
| 23 // it's ok to shutdown, when really it's not. | 28 // it's ok to shutdown, when really it's not. |
| 24 virtual bool CanShutdown(); | 29 virtual bool CanShutdown(); |
| 25 | 30 |
| 26 // Called when the process has been started. | 31 // Called when the process has been started. |
| 27 virtual void OnProcessLaunched() {} | 32 virtual void OnProcessLaunched() {} |
| 28 | 33 |
| 29 // Called if the process failed to launch. In this case the process never | 34 // Called if the process failed to launch. In this case the process never |
| 30 // started so the code here is a platform specific error code. | 35 // started so the code here is a platform specific error code. |
| 31 virtual void OnProcessLaunchFailed(int error_code) {} | 36 virtual void OnProcessLaunchFailed(int error_code) {} |
| 32 | 37 |
| 33 // Called if the process crashed. |exit_code| is the status returned when the | 38 // Called if the process crashed. |exit_code| is the status returned when the |
| 34 // process crashed (for posix, as returned from waitpid(), for Windows, as | 39 // process crashed (for posix, as returned from waitpid(), for Windows, as |
| 35 // returned from GetExitCodeProcess()). | 40 // returned from GetExitCodeProcess()). |
| 36 virtual void OnProcessCrashed(int exit_code) {} | 41 virtual void OnProcessCrashed(int exit_code) {} |
| 37 | 42 |
| 38 // Returns the ServiceRegistry for this child process. | 43 // Returns the shell::InterfaceRegistry the browser process uses to expose |
| 39 virtual ServiceRegistry* GetServiceRegistry(); | 44 // interfaces to the child. |
| 45 virtual shell::InterfaceRegistry* GetInterfaceRegistry(); |
| 46 |
| 47 // Returns the shell::InterfaceProvider the browser process can use to bind |
| 48 // interfaces exposed to it from the child. |
| 49 virtual shell::InterfaceProvider* GetRemoteInterfaces(); |
| 40 }; | 50 }; |
| 41 | 51 |
| 42 }; // namespace content | 52 }; // namespace content |
| 43 | 53 |
| 44 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ | 54 #endif // CONTENT_PUBLIC_BROWSER_BROWSER_CHILD_PROCESS_HOST_DELEGATE_H_ |
| OLD | NEW |