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

Unified Diff: content/public/app/content_main.h

Issue 9513006: First pass at content shell for the Mac. Doesn't work yet. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 10 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/public/app/content_main.h
diff --git a/content/public/app/content_main.h b/content/public/app/content_main.h
index 6c58a8ae154684398668359933fa14c309887c34..40528b43a0d4e928bf4886f8cea669d7764a5fdb 100644
--- a/content/public/app/content_main.h
+++ b/content/public/app/content_main.h
@@ -33,9 +33,13 @@ CONTENT_EXPORT int ContentMain(HINSTANCE instance,
sandbox::SandboxInterfaceInfo* sandbox_info,
ContentMainDelegate* delegate);
#else
-CONTENT_EXPORT int ContentMain(int argc,
- const char** argv,
- ContentMainDelegate* delegate);
+
+#if defined(OS_MACOSX)
+__attribute__((visibility("default")))
Mark Mentovai 2012/02/28 20:12:40 As discussed previously with respect to an “extern
Avi (use Gerrit) 2012/02/29 19:46:50 Done.
+#endif // OS_MACOSX
+ CONTENT_EXPORT int ContentMain(int argc,
Mark Mentovai 2012/02/28 20:12:40 No new indentation here.
Avi (use Gerrit) 2012/02/29 19:46:50 Done.
+ const char** argv,
+ ContentMainDelegate* delegate);
#endif
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698