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

Unified Diff: webkit/default_plugin/default_plugin.cc

Issue 1662: Replace "WINAPI" with platform-independent "API_CALL". (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 12 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
« no previous file with comments | « no previous file | webkit/default_plugin/plugin_main.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/default_plugin/default_plugin.cc
===================================================================
--- webkit/default_plugin/default_plugin.cc (revision 1898)
+++ webkit/default_plugin/default_plugin.cc (working copy)
@@ -6,16 +6,15 @@
#include "webkit/default_plugin/plugin_main.h"
extern "C" {
-NPError WINAPI NP_GetEntryPoints(NPPluginFuncs* funcs) {
+NPError API_CALL NP_GetEntryPoints(NPPluginFuncs* funcs) {
return default_plugin::NP_GetEntryPoints(funcs);
}
-NPError WINAPI NP_Initialize(NPNetscapeFuncs* funcs) {
+NPError API_CALL NP_Initialize(NPNetscapeFuncs* funcs) {
return default_plugin::NP_Initialize(funcs);
}
-NPError WINAPI NP_Shutdown() {
+NPError API_CALL NP_Shutdown() {
return default_plugin::NP_Shutdown();
}
} // extern "C"
-
« no previous file with comments | « no previous file | webkit/default_plugin/plugin_main.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698