summaryrefslogtreecommitdiffstats
path: root/chromium/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h')
-rw-r--r--chromium/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h34
1 files changed, 0 insertions, 34 deletions
diff --git a/chromium/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h b/chromium/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h
deleted file mode 100644
index 0d182087d66..00000000000
--- a/chromium/ppapi/native_client/src/trusted/plugin/nacl_entry_points.h
+++ /dev/null
@@ -1,34 +0,0 @@
-/*
- * Copyright (c) 2012 The Chromium Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
-#define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_
-
-#include <stddef.h>
-
-#include <map>
-#include <string>
-
-#include "native_client/src/shared/imc/nacl_imc_c.h"
-#include "ppapi/c/pp_instance.h"
-#include "ppapi/c/private/ppb_instance_private.h"
-
-typedef PP_ExternalPluginResult (*LaunchNaClProcessFunc)(
- PP_Instance instance,
- const char* alleged_url,
- PP_Bool uses_irt,
- PP_Bool uses_ppapi,
- PP_Bool enable_ppapi_dev,
- PP_Bool enable_dyncode_syscalls,
- PP_Bool enable_exception_handling,
- PP_Bool enable_crash_throttling,
- NaClHandle* result_socket,
- struct PP_Var* error_message);
-
-
-extern LaunchNaClProcessFunc launch_nacl_process;
-
-#endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NACL_ENTRY_POINTS_H_