| OLD | NEW |
| 1 <script> | 1 <script> |
| 2 // OnNaClLoad should be called and invoking a method | 2 // OnNaClLoad should be called and invoking a method |
| 3 // in a NaCl module should return a correct value. | 3 // in a NaCl module should return a correct value. |
| 4 | 4 |
| 5 var pass = chrome.test.callbackPass; | 5 var pass = chrome.test.callbackPass; |
| 6 | 6 |
| 7 chrome.test.runTests([ | 7 chrome.test.runTests([ |
| 8 function nacl() { | 8 function nacl() { |
| 9 // Nothing to do here, | 9 // Nothing to do here, |
| 10 // we call the callback when we get the notification from NaCl | 10 // we call the callback when we get the notification from NaCl |
| (...skipping 16 matching lines...) Expand all Loading... |
| 27 function OnNaClFail() { | 27 function OnNaClFail() { |
| 28 chrome.test.fail(); | 28 chrome.test.fail(); |
| 29 } | 29 } |
| 30 </script> | 30 </script> |
| 31 | 31 |
| 32 <h1>Native Client SRPC Simple Plug-in</h1> | 32 <h1>Native Client SRPC Simple Plug-in</h1> |
| 33 <p> | 33 <p> |
| 34 <embed name="nacl_module" | 34 <embed name="nacl_module" |
| 35 id="pluginobj" | 35 id="pluginobj" |
| 36 width=0 height=0 | 36 width=0 height=0 |
| 37 nexes=" | 37 src="bin/x86/srpc_hw.nexe" |
| 38 x86-32: /bin/x86/srpc_hw.nexe | |
| 39 x86-64: /bin/x64/srpc_hw.nexe | |
| 40 ARM: /bin/arm/srpc_hw.nexe" | |
| 41 type="application/x-nacl-srpc" | 38 type="application/x-nacl-srpc" |
| 42 onload="OnNaClLoad()" | 39 onload="OnNaClLoad()" |
| 43 onfail="OnNaClFail()" | 40 onfail="OnNaClFail()" |
| 44 /> | 41 /> |
| 45 </p> | 42 </p> |
| OLD | NEW |