Chromium Code Reviews| Index: content/common/child_process_host.h |
| diff --git a/content/common/child_process_host.h b/content/common/child_process_host.h |
| index 8637c184c9cf9cc3fce8128d51cc1d53f7ba7504..2c96ef845238adfd2f9466cf8e33e10b520a82b7 100644 |
| --- a/content/common/child_process_host.h |
| +++ b/content/common/child_process_host.h |
| @@ -18,6 +18,7 @@ |
| #include "base/basictypes.h" |
| #include "base/memory/scoped_ptr.h" |
| #include "content/common/content_notification_types.h" |
| +#include "content/common/content_export.h" |
|
darin (slow to review)
2011/09/04 15:41:04
nit: "export" before "notification"
Dirk Pranke
2011/09/07 01:46:07
Done.
|
| #include "ipc/ipc_channel_proxy.h" |
| class CommandLine; |
| @@ -30,8 +31,8 @@ class Message; |
| // Provides common functionality for hosting a child process and processing IPC |
| // messages between the host and the child process. Subclasses are responsible |
| // for the actual launching and terminating of the child processes. |
| -class ChildProcessHost : public IPC::Channel::Listener, |
| - public IPC::Message::Sender { |
| +class CONTENT_EXPORT ChildProcessHost : public IPC::Channel::Listener, |
| + public IPC::Message::Sender { |
| public: |
| // These flags may be passed to GetChildPath in order to alter its behavior, |