summaryrefslogtreecommitdiffstats
path: root/remoting
diff options
context:
space:
mode:
authorgarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-09 16:53:11 +0000
committergarykac@chromium.org <garykac@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2011-06-09 16:53:11 +0000
commit23f785bb901f960bb8481ff93b3294e6700b827c (patch)
tree538da6e9bb6b19704303f88c670e7249185631c5 /remoting
parent2e9706c2f482c3c82d0ed2fb9684fd0cce64a35a (diff)
downloadchromium_src-23f785bb901f960bb8481ff93b3294e6700b827c.zip
chromium_src-23f785bb901f960bb8481ff93b3294e6700b827c.tar.gz
chromium_src-23f785bb901f960bb8481ff93b3294e6700b827c.tar.bz2
Fix calling convention for Chromoting's NP_Shutdown entry points
BUG=none TEST=none Review URL: http://codereview.chromium.org/7129034 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@88544 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'remoting')
-rw-r--r--remoting/host/host_plugin.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/remoting/host/host_plugin.cc b/remoting/host/host_plugin.cc
index 3189634..350d8df 100644
--- a/remoting/host/host_plugin.cc
+++ b/remoting/host/host_plugin.cc
@@ -931,7 +931,7 @@ EXPORT NPError API_CALL NP_Initialize(NPNetscapeFuncs* npnetscape_funcs
return NPERR_NO_ERROR;
}
-EXPORT NPError NP_Shutdown() {
+EXPORT NPError API_CALL NP_Shutdown() {
LOG(INFO) << "NP_Shutdown";
delete g_at_exit_manager;
g_at_exit_manager = NULL;