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

Unified Diff: native_client/src/trusted/plugin/nacl_entry_points.cc

Issue 212020: NaCl integration (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 3 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 | « native_client/src/trusted/plugin/nacl_entry_points.h ('k') | webkit/glue/plugins/plugin_lib.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: native_client/src/trusted/plugin/nacl_entry_points.cc
===================================================================
--- native_client/src/trusted/plugin/nacl_entry_points.cc (revision 730)
+++ native_client/src/trusted/plugin/nacl_entry_points.cc (working copy)
@@ -30,6 +30,7 @@
*/
#include "webkit/glue/plugins/nphostapi.h"
+#include "webkit/glue/plugins/plugin_list.h"
// This code inside the ifdef is copied from
// native_client/src/third_party_mod/npapi_plugin/np_entry.cc
@@ -73,3 +74,25 @@
return NP_Shutdown();
}
+void RegisterInternalNaClPlugin() {
+ NPAPI::PluginEntryPoints entry_points = {
+#if !defined(OS_LINUX)
+ NaCl_NP_GetEntryPoints,
+#endif
+ NaCl_NP_Initialize,
+ NaCl_NP_Shutdown
+ };
+
+ const NPAPI::PluginVersionInfo nacl_plugin_info = {
+ FilePath(FILE_PATH_LITERAL("internal_nacl")),
+ L"Native Client",
+ L"Statically linked NaCl",
+ L"1, 0, 0, 1",
+ L"application/x-nacl-srpc",
+ L"",
+ L"",
+ entry_points
+ };
+
+ NPAPI::PluginList::Singleton()->RegisterInternalPlugin(nacl_plugin_info);
+}
« no previous file with comments | « native_client/src/trusted/plugin/nacl_entry_points.h ('k') | webkit/glue/plugins/plugin_lib.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698