diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-13 22:11:57 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-09-13 22:11:57 +0000 |
commit | 8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c (patch) | |
tree | 6d15da0c38831ea9180d3d90caa66d5adc7cb000 /content/browser/webui | |
parent | 8ea5d4bd1f750572bec6b6b73732bba147f0be42 (diff) | |
download | chromium_src-8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c.zip chromium_src-8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c.tar.gz chromium_src-8d128d6b9ef0096c874fafb9f80cbb5a03c98f4c.tar.bz2 |
Annotate all of the functions in content that need to be exported, in preparation for creating a content shared library.
R=darin@chromium.org, jam@chromium.org, willchan@chromium.org
BUG=90442
TEST=everything still compiles
Review URL: http://codereview.chromium.org/7800015
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@100975 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/webui')
-rw-r--r-- | content/browser/webui/web_ui.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/browser/webui/web_ui.h b/content/browser/webui/web_ui.h index 377df55..80f0342 100644 --- a/content/browser/webui/web_ui.h +++ b/content/browser/webui/web_ui.h @@ -13,6 +13,7 @@ #include "base/callback_old.h" #include "base/compiler_specific.h" #include "base/string16.h" +#include "content/common/content_export.h" #include "content/common/page_transition_types.h" #include "ipc/ipc_channel.h" @@ -32,7 +33,7 @@ class Value; // // NOTE: If you're creating a new WebUI for Chrome code, make sure you extend // ChromeWebUI. -class WebUI : public IPC::Channel::Listener { +class CONTENT_EXPORT WebUI : public IPC::Channel::Listener { public: explicit WebUI(TabContents* contents); virtual ~WebUI(); @@ -198,7 +199,7 @@ class WebUI : public IPC::Channel::Listener { // Messages sent from the DOM are forwarded via the WebUI to handler // classes. These objects are owned by WebUI and destroyed when the // host is destroyed. -class WebUIMessageHandler { +class CONTENT_EXPORT WebUIMessageHandler { public: WebUIMessageHandler(); virtual ~WebUIMessageHandler(); |