diff options
author | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-13 02:00:58 +0000 |
---|---|---|
committer | dpranke@chromium.org <dpranke@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-10-13 02:00:58 +0000 |
commit | d5b92798b55146fd8383bacd991f335de67a71a1 (patch) | |
tree | f45bf78ce7cdf162bc2bdfff6e525cc8aeb36bb1 /content/app | |
parent | 0be7b2bcef865fce63698c9aa819ed1e7ea8335a (diff) | |
download | chromium_src-d5b92798b55146fd8383bacd991f335de67a71a1.zip chromium_src-d5b92798b55146fd8383bacd991f335de67a71a1.tar.gz chromium_src-d5b92798b55146fd8383bacd991f335de67a71a1.tar.bz2 |
Revert r105238 - "Link startup_helper_win statically to force InitializeSandboxInfo"
Review URL: http://codereview.chromium.org/8261002
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@105240 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/app')
-rw-r--r-- | content/app/startup_helper_win.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/content/app/startup_helper_win.h b/content/app/startup_helper_win.h index e20b638..b870798 100644 --- a/content/app/startup_helper_win.h +++ b/content/app/startup_helper_win.h @@ -6,6 +6,8 @@ #define CONTENT_APP_STARTUP_HELPER_WIN_H_ #pragma once +#include "content/common/content_export.h" + class CommandLine; namespace sandbox { @@ -16,11 +18,9 @@ struct SandboxInterfaceInfo; // will want to call at startup. namespace content { -// Initializes the sandbox code and turns on DEP. Note: This function -// must be *statically* linked into the executable (along with the static -// sandbox library); it will not work correctly if it is exported from a -// DLL and linked in. -void InitializeSandboxInfo(sandbox::SandboxInterfaceInfo* sandbox_info); +// Initializes the sandbox code and turns on DEP. +CONTENT_EXPORT void InitializeSandboxInfo( + sandbox::SandboxInterfaceInfo* sandbox_info); // Register the invalid param handler and pure call handler to be able to // notify breakpad when it happens. |