diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-16 21:55:18 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-11-16 21:55:18 +0000 |
commit | 5cba9ff723227ca847c8cb4186be45ea903f9794 (patch) | |
tree | 3eb4776e934e7a7fb3a007a80bb08f549b0368d6 /content/public | |
parent | 1562042283de1138d4386d1fea05d9028fbc8b0c (diff) | |
download | chromium_src-5cba9ff723227ca847c8cb4186be45ea903f9794.zip chromium_src-5cba9ff723227ca847c8cb4186be45ea903f9794.tar.gz chromium_src-5cba9ff723227ca847c8cb4186be45ea903f9794.tar.bz2 |
Enable content component (again!).
This version fixes a problem with the windows incremental linking build. We can't incrementally link chrome when content is being built as a DLL because chrome links in webkit_glue and webkit_glue depends on symbols defined in content. We can remove this when we fix glue.
R=jam@chromium.org
BUG=90442, 98755.
Review URL: http://codereview.chromium.org/8570024
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@110360 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/public')
-rw-r--r-- | content/public/common/show_desktop_notification_params.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/public/common/show_desktop_notification_params.h b/content/public/common/show_desktop_notification_params.h index 2f19079..a33a6b9 100644 --- a/content/public/common/show_desktop_notification_params.h +++ b/content/public/common/show_desktop_notification_params.h @@ -6,13 +6,14 @@ #define CONTENT_PUBLIC_COMMON_SHOW_DESKTOP_NOTIFICATION_PARAMS_H_ #pragma once +#include "content/common/content_export.h" #include "googleurl/src/gurl.h" #include "third_party/WebKit/Source/WebKit/chromium/public/WebTextDirection.h" namespace content { // Parameters used when showing an HTML5 notification. -struct ShowDesktopNotificationHostMsgParams { +struct CONTENT_EXPORT ShowDesktopNotificationHostMsgParams { ShowDesktopNotificationHostMsgParams(); ~ShowDesktopNotificationHostMsgParams(); |