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/app | |
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/app')
-rw-r--r-- | content/app/content_main.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/content/app/content_main.h b/content/app/content_main.h index 386902d..f12f542 100644 --- a/content/app/content_main.h +++ b/content/app/content_main.h @@ -7,6 +7,7 @@ #pragma once #include "build/build_config.h" +#include "content/common/content_export.h" #if defined(OS_WIN) #include <windows.h> @@ -28,13 +29,13 @@ class ContentMainDelegate; // |sandbox_info| should be initialized using InitializeSandboxInfo from // content_main_win.h -int ContentMain(HINSTANCE instance, - sandbox::SandboxInterfaceInfo* sandbox_info, - ContentMainDelegate* delegate); +CONTENT_EXPORT int ContentMain(HINSTANCE instance, + sandbox::SandboxInterfaceInfo* sandbox_info, + ContentMainDelegate* delegate); #else -int ContentMain(int argc, - const char** argv, - ContentMainDelegate* delegate); +CONTENT_EXPORT int ContentMain(int argc, + char** argv, + ContentMainDelegate* delegate); #endif } // namespace content |