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

Side by Side Diff: chrome/browser/resources/vr_shell/vr_shell_ui.html

Issue 2392683002: VrShell: Split HTML UI Javascript into UI and support portions. (Closed)
Patch Set: Fix element update mesh typo. Created 4 years, 2 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
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/vr_shell/vr_shell_ui.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!-- 1 <!--
2 Copyright 2016 The Chromium Authors. All rights reserved. 2 Copyright 2016 The Chromium Authors. All rights reserved.
3 Use of this source code is governed by a BSD-style license that can be 3 Use of this source code is governed by a BSD-style license that can be
4 found in the LICENSE file. 4 found in the LICENSE file.
5 --> 5 -->
6 <!DOCTYPE html> 6 <!DOCTYPE html>
7 <html> 7 <html>
8 <head> 8 <head>
9 <meta charset="utf-8"> 9 <meta charset="utf-8">
10 <if expr="is_android or is_ios"> 10 <if expr="is_android or is_ios">
(...skipping 12 matching lines...) Expand all
23 <img class="webvr-not-secure-icon" width="36" height="36" 23 <img class="webvr-not-secure-icon" width="36" height="36"
24 src="../../../../ui/webui/resources/images/i_circle.svg"> 24 src="../../../../ui/webui/resources/images/i_circle.svg">
25 <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div> 25 <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div>
26 </div> 26 </div>
27 </div> 27 </div>
28 <div id="webvr-not-secure-transient" class="webvr-message-box"> 28 <div id="webvr-not-secure-transient" class="webvr-message-box">
29 <div> 29 <div>
30 <div>$i18n{insecureWebVrContentTransient}</div> 30 <div>$i18n{insecureWebVrContentTransient}</div>
31 </div> 31 </div>
32 </div> 32 </div>
33
34 </body> 33 </body>
35 34
36 <!-- Run script after creating body, to let it add its own elements. --> 35 <!-- Run script after creating body, to let it add its own elements. -->
36 <script src="vr_shell_ui_api.js"></script>
37 <script src="vr_shell_ui_scene.js"></script>
37 <script src="vr_shell_ui.js"></script> 38 <script src="vr_shell_ui.js"></script>
38 </html> 39 </html>
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/vr_shell/vr_shell_ui.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698