OLD | NEW |
1 /* | 1 /* |
2 * Copyright 2009, Google Inc. | 2 * Copyright 2009, Google Inc. |
3 * All rights reserved. | 3 * All rights reserved. |
4 * | 4 * |
5 * Redistribution and use in source and binary forms, with or without | 5 * Redistribution and use in source and binary forms, with or without |
6 * modification, are permitted provided that the following conditions are | 6 * modification, are permitted provided that the following conditions are |
7 * met: | 7 * met: |
8 * | 8 * |
9 * * Redistributions of source code must retain the above copyright | 9 * * Redistributions of source code must retain the above copyright |
10 * notice, this list of conditions and the following disclaimer. | 10 * notice, this list of conditions and the following disclaimer. |
(...skipping 12 matching lines...) Expand all Loading... |
23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, | 23 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, |
24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT | 24 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT |
25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, | 25 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, |
26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 26 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 27 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 28 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 29 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
30 */ | 30 */ |
31 | 31 |
32 #include "webkit/glue/plugins/nphostapi.h" | 32 #include "webkit/glue/plugins/nphostapi.h" |
| 33 #include "webkit/glue/plugins/plugin_list.h" |
33 | 34 |
34 // This code inside the ifdef is copied from | 35 // This code inside the ifdef is copied from |
35 // native_client/src/third_party_mod/npapi_plugin/np_entry.cc | 36 // native_client/src/third_party_mod/npapi_plugin/np_entry.cc |
36 // This is required as some function declarations are missing for Mac OSX | 37 // This is required as some function declarations are missing for Mac OSX |
37 // in native_client/src/third_party/npapi/files/include/npupp.h that is included | 38 // in native_client/src/third_party/npapi/files/include/npupp.h that is included |
38 // above. | 39 // above. |
39 | 40 |
40 extern "C" { | 41 extern "C" { |
41 // Safari under OS X requires the following three entry points to be exported. | 42 // Safari under OS X requires the following three entry points to be exported. |
42 NPError API_CALL NP_Initialize(NPNetscapeFuncs* pFuncs | 43 NPError API_CALL NP_Initialize(NPNetscapeFuncs* pFuncs |
(...skipping 23 matching lines...) Expand all Loading... |
66 #if defined(XP_UNIX) && !defined(XP_MACOSX) | 67 #if defined(XP_UNIX) && !defined(XP_MACOSX) |
67 , pluginFuncs | 68 , pluginFuncs |
68 #endif // NACL_LINUX | 69 #endif // NACL_LINUX |
69 ); | 70 ); |
70 } | 71 } |
71 | 72 |
72 NPError API_CALL NaCl_NP_Shutdown() { | 73 NPError API_CALL NaCl_NP_Shutdown() { |
73 return NP_Shutdown(); | 74 return NP_Shutdown(); |
74 } | 75 } |
75 | 76 |
| 77 void RegisterInternalNaClPlugin() { |
| 78 NPAPI::PluginEntryPoints entry_points = { |
| 79 #if !defined(OS_LINUX) |
| 80 NaCl_NP_GetEntryPoints, |
| 81 #endif |
| 82 NaCl_NP_Initialize, |
| 83 NaCl_NP_Shutdown |
| 84 }; |
| 85 |
| 86 const NPAPI::PluginVersionInfo nacl_plugin_info = { |
| 87 FilePath(FILE_PATH_LITERAL("internal_nacl")), |
| 88 L"Native Client", |
| 89 L"Statically linked NaCl", |
| 90 L"1, 0, 0, 1", |
| 91 L"application/x-nacl-srpc", |
| 92 L"", |
| 93 L"", |
| 94 entry_points |
| 95 }; |
| 96 |
| 97 NPAPI::PluginList::Singleton()->RegisterInternalPlugin(nacl_plugin_info); |
| 98 } |
OLD | NEW |