Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(456)

Unified Diff: content/app/content_main.h

Issue 7800015: prune down content_dll change to just the CONTENT_EXPORTS (Closed)
Patch Set: update copyright headers, merge Created 9 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/app/content_main.h
diff --git a/content/app/content_main.h b/content/app/content_main.h
index 386902dc2b7ab04da27c9aeb67b4cd5e32b937fd..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,
- const char** argv,
- ContentMainDelegate* delegate);
+CONTENT_EXPORT int ContentMain(int argc,
+ char** argv,
+ ContentMainDelegate* delegate);
#endif
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698