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

Unified Diff: plugin/linux/main_linux.cc

Issue 160317: linux: unexport as many symbols as possible (Closed)
Patch Set: Created 11 years, 5 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
« no previous file with comments | « plugin/cross/main.cc ('k') | v8/build.scons » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: plugin/linux/main_linux.cc
diff --git a/plugin/linux/main_linux.cc b/plugin/linux/main_linux.cc
index 55096db311962e40f09ed1fca74ae7e8856672bd..b91c9d8ee36b88c52fc83e8c4149dcbbccd28b9b 100644
--- a/plugin/linux/main_linux.cc
+++ b/plugin/linux/main_linux.cc
@@ -622,15 +622,15 @@ namespace o3d {
extern "C" {
#endif
-NPError OSCALL NP_Initialize(NPNetscapeFuncs *browserFuncs,
- NPPluginFuncs *pluginFuncs) {
+NPError EXPORT_SYMBOL OSCALL NP_Initialize(NPNetscapeFuncs *browserFuncs,
+ NPPluginFuncs *pluginFuncs) {
NPError retval = InitializeNPNApi(browserFuncs);
if (retval != NPERR_NO_ERROR) return retval;
NP_GetEntryPoints(pluginFuncs);
return InitializePlugin();
}
-NPError OSCALL NP_Shutdown(void) {
+NPError EXPORT_SYMBOL OSCALL NP_Shutdown(void) {
HANDLE_CRASHES;
DLOG(INFO) << "NP_Shutdown";
« no previous file with comments | « plugin/cross/main.cc ('k') | v8/build.scons » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698