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

Side by Side Diff: native_client_sdk/src/examples/tumbler/index.html

Issue 10828187: [NaCl SDK] Support multiple configs (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 4 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <!-- 3 <!--
4 Copyright (c) 2012 The Chromium Authors. All rights reserved. 4 Copyright (c) 2012 The Chromium Authors. All rights reserved.
5 Use of this source code is governed by a BSD-style license that can be 5 Use of this source code is governed by a BSD-style license that can be
6 found in the LICENSE file. 6 found in the LICENSE file.
7 --> 7 -->
8 <head> 8 <head>
9 <meta http-equiv="Pragma" content="no-cache"> 9 <meta http-equiv="Pragma" content="no-cache">
10 <meta http-equiv="Expires" content="-1"> 10 <meta http-equiv="Expires" content="-1">
11 <title><TITLE></title> 11 <title><TITLE></title>
12 <script type="text/javascript"> 12 <script type="text/javascript">
13 // Provide the tumbler namespace 13 // Provide the tumbler namespace
14 tumbler = {}; 14 tumbler = {};
15 </script> 15 </script>
16 <script type="text/javascript" src="common.js"></script> 16 <script type="text/javascript" src="common.js"></script>
17 <script type="text/javascript" src="bind.js"></script> 17 <script type="text/javascript" src="bind.js"></script>
18 <script type="text/javascript" src="dragger.js"></script> 18 <script type="text/javascript" src="dragger.js"></script>
19 <script type="text/javascript" src="tumbler.js"></script> 19 <script type="text/javascript" src="tumbler.js"></script>
20 <script type="text/javascript" src="vector3.js"></script> 20 <script type="text/javascript" src="vector3.js"></script>
21 <script type="text/javascript" src="trackball.js"></script> 21 <script type="text/javascript" src="trackball.js"></script>
22 <script type="text/javascript"> 22 <script type="text/javascript">
23 function moduleDidLoad() { 23 function moduleDidLoad() {
24 tumbler.application = new tumbler.Application(); 24 tumbler.application = new tumbler.Application();
25 tumbler.application.moduleDidLoad(); 25 tumbler.application.moduleDidLoad();
26 } 26 }
27 </script> 27 </script>
28 </head> 28 </head>
29 <body onload="common.onload('<NAME>', '<tc>', 480, 480)"> 29 <body onload="common.onload('<NAME>', '<tc>', '<config>', 480, 480)">
30 <h1><TITLE></h1> 30 <h1><TITLE></h1>
31 <h2>Status: <code id="statusField">NO-STATUS</code></h2> 31 <h2>Status: <code id="statusField">NO-STATUS</code></h2>
32 <p> 32 <p>
33 The Native Client module executed in this page draws a 3D cube 33 The Native Client module executed in this page draws a 3D cube
34 and allows you to rotate it using a virtual trackball method. 34 and allows you to rotate it using a virtual trackball method.
35 </p> 35 </p>
36 <!-- The NaCl plugin will be embedded inside the element with id "listener". 36 <!-- The NaCl plugin will be embedded inside the element with id "listener".
37 See common.js.--> 37 See common.js.-->
38 <div id="listener"></div> 38 <div id="listener"></div>
39 </body> 39 </body>
40 </html> 40 </html>
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/sine_synth/index.html ('k') | native_client_sdk/src/examples/websocket/index.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698