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

Unified Diff: components/nacl/loader/nonsfi/irt_interfaces.cc

Issue 131133002: Implement nacl_irt_fdio for non-sfi mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 11 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 | « components/nacl/loader/nonsfi/irt_interfaces.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: components/nacl/loader/nonsfi/irt_interfaces.cc
diff --git a/components/nacl/loader/nonsfi/irt_interfaces.cc b/components/nacl/loader/nonsfi/irt_interfaces.cc
index 151df35df6ddf8b02f580f9ffe0adf586fd4ebc7..a7e7d1e2461077ab4f0a5ff39d8f0eeb8d29612d 100644
--- a/components/nacl/loader/nonsfi/irt_interfaces.cc
+++ b/components/nacl/loader/nonsfi/irt_interfaces.cc
@@ -13,7 +13,7 @@ namespace {
// This table keeps a pair of IRT entry (such as nacl_irt_basic, nacl_irt_fdio
// etc.) and its registered name with its version (such as NACL_IRT_BASIC_v0_1,
-// NACL_IRT_FDIO_v0_1, etc.).
+// NACL_IRT_DEV_FDIO_v0_1, etc.).
struct NaClInterfaceTable {
const char* name;
const void* table;
@@ -23,6 +23,7 @@ struct NaClInterfaceTable {
#define NACL_INTERFACE_TABLE(name, value) { name, &value, sizeof(value) }
const NaClInterfaceTable kIrtInterfaces[] = {
NACL_INTERFACE_TABLE(NACL_IRT_BASIC_v0_1, kIrtBasic),
+ NACL_INTERFACE_TABLE(NACL_IRT_DEV_FDIO_v0_1, kIrtFdIO),
};
#undef NACL_INTERFACE_TABLE
« no previous file with comments | « components/nacl/loader/nonsfi/irt_interfaces.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698