| Index: content/public/common/child_process_host_delegate.h
|
| diff --git a/content/public/common/child_process_host_delegate.h b/content/public/common/child_process_host_delegate.h
|
| index 4418e611a0035dc7793e7415a0cdc95b8c4ef712..bbb234da294e84982feacbf64d87c67f9bd4d78c 100644
|
| --- a/content/public/common/child_process_host_delegate.h
|
| +++ b/content/public/common/child_process_host_delegate.h
|
| @@ -14,7 +14,7 @@
|
| namespace content {
|
|
|
| // Interface that all users of ChildProcessHost need to provide.
|
| -class ChildProcessHostDelegate : public IPC::Channel::Listener {
|
| +class CONTENT_EXPORT ChildProcessHostDelegate : public IPC::Channel::Listener {
|
| public:
|
| virtual ~ChildProcessHostDelegate() {}
|
|
|
| @@ -22,7 +22,7 @@ class ChildProcessHostDelegate : public IPC::Channel::Listener {
|
| // the default return value). The exception is if the host is in the middle of
|
| // sending a request to the process, in which case the other side might think
|
| // it's ok to shutdown, when really it's not.
|
| - CONTENT_EXPORT virtual bool CanShutdown();
|
| + virtual bool CanShutdown();
|
|
|
| // Notifies the derived class that we told the child process to kill itself.
|
| virtual void ShutdownStarted() {}
|
|
|