diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 22:32:25 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-12-02 22:32:25 +0000 |
commit | 73dca1b6e24c63f52cc2aaf44afdfb7c21df93a1 (patch) | |
tree | 692bde986ae1239bbd7b1a9e7a8bafee79416566 /content | |
parent | db84ed0319cadfcff26cf9892f7fef2a84156bfb (diff) | |
download | chromium_src-73dca1b6e24c63f52cc2aaf44afdfb7c21df93a1.zip chromium_src-73dca1b6e24c63f52cc2aaf44afdfb7c21df93a1.tar.gz chromium_src-73dca1b6e24c63f52cc2aaf44afdfb7c21df93a1.tar.bz2 |
fix shared library build
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@112807 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content')
-rw-r--r-- | content/browser/browser_child_process_host.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/browser/browser_child_process_host.h b/content/browser/browser_child_process_host.h index 561d84e..97edf84 100644 --- a/content/browser/browser_child_process_host.h +++ b/content/browser/browser_child_process_host.h @@ -8,6 +8,7 @@ #include <list> +#include "base/compiler_specific.h" #include "base/memory/scoped_ptr.h" #include "base/memory/weak_ptr.h" #include "base/process.h" @@ -30,7 +31,7 @@ class WaitableEvent; // [Browser]RenderProcessHost is the main exception that doesn't derive from // this class. That project lives on the UI thread. class CONTENT_EXPORT BrowserChildProcessHost : - public content::ChildProcessHostDelegate, + public NON_EXPORTED_BASE(content::ChildProcessHostDelegate), public ChildProcessLauncher::Client, public base::WaitableEventWatcher::Delegate, public IPC::Message::Sender { |