diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-03 08:00:33 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-03 08:00:33 +0000 |
commit | bfcacab6370cd7df0b372e927bc3ecb102290dd4 (patch) | |
tree | 0cf0bf081b04924b126906af06b872cb2cbca2f8 /content/public | |
parent | 72f3f55b7fa7c0a2bb272bc250cc9b04826a8ca5 (diff) | |
download | chromium_src-bfcacab6370cd7df0b372e927bc3ecb102290dd4.zip chromium_src-bfcacab6370cd7df0b372e927bc3ecb102290dd4.tar.gz chromium_src-bfcacab6370cd7df0b372e927bc3ecb102290dd4.tar.bz2 |
Fix shared builder
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112881 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/common/child_process_host.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/content/public/common/child_process_host.h b/content/public/common/child_process_host.h index 31839fc..8c85091 100644 --- a/content/public/common/child_process_host.h +++ b/content/public/common/child_process_host.h @@ -17,12 +17,12 @@ namespace content { class ChildProcessHostDelegate; // Interface that all users of ChildProcessHost need to provide. -class ChildProcessHost : public IPC::Message::Sender { +class CONTENT_EXPORT ChildProcessHost : public IPC::Message::Sender { public: virtual ~ChildProcessHost() {} // Used to create a child process host. The delegate must outlive this object. - CONTENT_EXPORT static ChildProcessHost* Create( + static ChildProcessHost* Create( ChildProcessHostDelegate* delegate); // These flags may be passed to GetChildPath in order to alter its behavior, @@ -70,7 +70,7 @@ class ChildProcessHost : public IPC::Message::Sender { // if none of these special behaviors are required. // // On failure, returns an empty FilePath. - CONTENT_EXPORT static FilePath GetChildPath(int flags); + static FilePath GetChildPath(int flags); // Send the shutdown message to the child process. // Does not check with the delegate's CanShutdown. |