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

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

Issue 13488007: [NaCl SDK] Make the SDK examples buildable as a packaged app. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix license headers Created 7 years, 8 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" src="common.js"></script> 12 <script type="text/javascript" src="common.js"></script>
13 <script type="text/javascript" src="check_browser.js"></script> 13 <script type="text/javascript" src="check_browser.js"></script>
14 <script type="text/javascript" src="bind.js"></script> 14 <script type="text/javascript" src="bind.js"></script>
15 <script type="text/javascript" src="dragger.js"></script> 15 <script type="text/javascript" src="dragger.js"></script>
16 <script type="text/javascript" src="tumbler.js"></script> 16 <script type="text/javascript" src="tumbler.js"></script>
17 <script type="text/javascript" src="vector3.js"></script> 17 <script type="text/javascript" src="vector3.js"></script>
18 <script type="text/javascript" src="trackball.js"></script> 18 <script type="text/javascript" src="trackball.js"></script>
19 </head> 19 </head>
20 <body data-width="480" data-height="480" {{attrs}}> 20 <body data-width="480" data-height="480" {{attrs}}>
21 <h1>{{title}}</h1> 21 <h1>{{title}}</h1>
22 <h2>Status: <code id="statusField">NO-STATUS</code></h2> 22 <h2>Status: <code id="statusField">NO-STATUS</code></h2>
23 <p>
24 The Native Client module executed in this page draws a 3D cube
25 and allows you to rotate it using a virtual trackball method. To toggle
26 the view to/from fullscreen, press the Enter key.
27 </p>
28 <!-- The NaCl plugin will be embedded inside the element with id "listener". 23 <!-- The NaCl plugin will be embedded inside the element with id "listener".
29 See common.js.--> 24 See common.js.-->
30 <div id="listener"></div> 25 <div id="listener"></div>
31 </body> 26 </body>
32 </html> 27 </html>
OLDNEW
« no previous file with comments | « native_client_sdk/src/examples/file_io/index.html ('k') | native_client_sdk/src/examples/gamepad/example.dsc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698