summaryrefslogtreecommitdiffstats
path: root/ppapi/native_client
diff options
context:
space:
mode:
authormseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-13 02:19:01 +0000
committermseaborn@chromium.org <mseaborn@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2013-02-13 02:19:01 +0000
commitc8e1ea3eb9d111f9c1ef2b2b394e497a6b820abe (patch)
tree69040559dd1d16965e5c09c4315e193bc0f9658c /ppapi/native_client
parente4b1429ff7f4ec1d9b100482df6970689aa25a31 (diff)
downloadchromium_src-c8e1ea3eb9d111f9c1ef2b2b394e497a6b820abe.zip
chromium_src-c8e1ea3eb9d111f9c1ef2b2b394e497a6b820abe.tar.gz
chromium_src-c8e1ea3eb9d111f9c1ef2b2b394e497a6b820abe.tar.bz2
NaCl: Remove use of the C++ IMC interface; use the C version instead
We want to remove the C++ version of IMC from the NaCl side. BUG=https://code.google.com/p/nativeclient/issues/detail?id=3303 TEST=build Review URL: https://codereview.chromium.org/12225154 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@182091 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'ppapi/native_client')
-rw-r--r--ppapi/native_client/src/trusted/plugin/nacl_entry_points.h4
-rw-r--r--ppapi/native_client/src/trusted/plugin/service_runtime.cc1
2 files changed, 2 insertions, 3 deletions
diff --git a/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h b/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h
index d40e254..f915edd 100644
--- a/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h
+++ b/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h
@@ -12,7 +12,7 @@
#include <map>
#include <string>
-#include "native_client/src/shared/imc/nacl_imc.h"
+#include "native_client/src/shared/imc/nacl_imc_c.h"
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/private/ppb_nacl_private.h"
@@ -21,7 +21,7 @@ typedef PP_NaClResult (*LaunchNaClProcessFunc)(PP_Instance instance,
PP_Bool uses_irt,
PP_Bool uses_ppapi,
PP_Bool enable_ppapi_dev,
- nacl::Handle* result_socket);
+ NaClHandle* result_socket);
extern LaunchNaClProcessFunc launch_nacl_process;
diff --git a/ppapi/native_client/src/trusted/plugin/service_runtime.cc b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
index 5653b62..ea7c262 100644
--- a/ppapi/native_client/src/trusted/plugin/service_runtime.cc
+++ b/ppapi/native_client/src/trusted/plugin/service_runtime.cc
@@ -21,7 +21,6 @@
#include "native_client/src/include/nacl_macros.h"
#include "native_client/src/include/nacl_scoped_ptr.h"
#include "native_client/src/include/nacl_string.h"
-#include "native_client/src/shared/imc/nacl_imc.h"
#include "native_client/src/shared/platform/nacl_check.h"
#include "native_client/src/shared/platform/nacl_log.h"
#include "native_client/src/shared/platform/nacl_sync.h"