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

Unified Diff: src/trusted/plugin/nexe_arch.h

Issue 7799028: Remove src/trusted/plugin (Closed) Base URL: svn://svn.chromium.org/native_client/trunk/src/native_client
Patch Set: fix gyp file for necessary -I Created 9 years, 4 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 | « src/trusted/plugin/nacl_subprocess.cc ('k') | src/trusted/plugin/nexe_arch.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/trusted/plugin/nexe_arch.h
diff --git a/src/trusted/plugin/nexe_arch.h b/src/trusted/plugin/nexe_arch.h
deleted file mode 100644
index 3fb24ea827f240cfad672dcb09eb2405ef7504a1..0000000000000000000000000000000000000000
--- a/src/trusted/plugin/nexe_arch.h
+++ /dev/null
@@ -1,41 +0,0 @@
-/*
- * Copyright 2010 The Native Client Authors. All rights reserved.
- * Use of this source code is governed by a BSD-style license that can
- * be found in the LICENSE file.
- */
-
-// Routines for determining the most appropriate NaCl executable for
-// the current CPU's architecture.
-
-#ifndef NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NEXE_ARCH_H_
-#define NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NEXE_ARCH_H_
-
-#include "native_client/src/include/portability.h"
-
-namespace plugin {
-// Returns the kind of SFI sandbox implemented by sel_ldr on this
-// platform. See the implementation in nexe_arch.cc for possible values.
-//
-// This is a function of the current CPU, OS, browser, installed
-// sel_ldr(s). It is not sufficient to derive the result only from
-// build-time parameters since, for example, an x86-32 plugin is
-// capable of launching a 64-bit NaCl sandbox if a 64-bit sel_ldr is
-// installed (and indeed, may only be capable of launching a 64-bit
-// sandbox).
-//
-// Note: The platform-sepcific implementations for this are under
-// <platform>/nexe_arch.cc
-const char* GetSandboxISA();
-} // namespace plugin
-
-#if defined(NACL_STANDALONE)
-// These symbols are for linking with things like unit test frameworks that
-// want to get at the C++ symbol names defined above in an un-mangled way.
-// TODO(dspringer): Figure out how to link the shared libs with the test
-// harness directly, and get rid of these wrappers.
-EXTERN_C_BEGIN
-DLLEXPORT const char* NaClPluginGetSandboxISA();
-EXTERN_C_END
-#endif
-
-#endif // NATIVE_CLIENT_SRC_TRUSTED_PLUGIN_NEXE_ARCH_H_
« no previous file with comments | « src/trusted/plugin/nacl_subprocess.cc ('k') | src/trusted/plugin/nexe_arch.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698