summaryrefslogtreecommitdiffstats
path: root/content/public/browser/browser_child_process_host_delegate.h
diff options
context:
space:
mode:
authorjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-20 06:55:23 +0000
committerjam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-20 06:55:23 +0000
commit1b5a6693b5c8facf6561032695ff5e424f173839 (patch)
tree4e52ffb1e4201a0fcf0b2d3906ad74d74f0e57de /content/public/browser/browser_child_process_host_delegate.h
parent34a90773493e1a272ae21b27616fd80bb2d7300b (diff)
downloadchromium_src-1b5a6693b5c8facf6561032695ff5e424f173839.zip
chromium_src-1b5a6693b5c8facf6561032695ff5e424f173839.tar.gz
chromium_src-1b5a6693b5c8facf6561032695ff5e424f173839.tar.bz2
Try to fix Linux components build.
TBR=erg git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118417 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public/browser/browser_child_process_host_delegate.h')
-rw-r--r--content/public/browser/browser_child_process_host_delegate.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/content/public/browser/browser_child_process_host_delegate.h b/content/public/browser/browser_child_process_host_delegate.h
index 5c82d05..e028c9a 100644
--- a/content/public/browser/browser_child_process_host_delegate.h
+++ b/content/public/browser/browser_child_process_host_delegate.h
@@ -12,7 +12,8 @@
namespace content {
// Interface that all users of BrowserChildProcessHost need to provide.
-class BrowserChildProcessHostDelegate : public IPC::Channel::Listener {
+class CONTENT_EXPORT BrowserChildProcessHostDelegate
+ : public IPC::Channel::Listener {
public:
virtual ~BrowserChildProcessHostDelegate() {}
@@ -20,7 +21,7 @@ class BrowserChildProcessHostDelegate : 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();
// Called when the process has been started.
virtual void OnProcessLaunched() {}