| Index: content/app/content_main.h
|
| diff --git a/content/app/content_main.h b/content/app/content_main.h
|
| index 259c8138eb5948a68b4f63112c4a3c07735c6427..f12f542b86e6858b49413405ea23fd0c632f6181 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,
|
| - char** argv,
|
| - ContentMainDelegate* delegate);
|
| +CONTENT_EXPORT int ContentMain(int argc,
|
| + char** argv,
|
| + ContentMainDelegate* delegate);
|
| #endif
|
|
|
| } // namespace content
|
|
|