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

Side by Side Diff: chrome/test/data/extensions/api_test/permissions/nacl_enabled/background.html

Issue 3159046: Revert 57540 (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 10 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/extensions/permissions_apitest.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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>
OLDNEW
« no previous file with comments | « chrome/browser/extensions/permissions_apitest.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698