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

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

Issue 2434013002: Implement a means of letting native VR Shell control the HTML UI. (Closed)
Patch Set: Impelement a means of letting native VR Shell control the HTML UI. 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
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 27 matching lines...) Expand all
38 <div class="button"></div> 38 <div class="button"></div>
39 <div class="caption">$i18n{reload}</div> 39 <div class="caption">$i18n{reload}</div>
40 </div> 40 </div>
41 <div class="round-button" id="forward"> 41 <div class="round-button" id="forward">
42 <div class="button"></div> 42 <div class="button"></div>
43 <div class="caption">$i18n{forward}</div> 43 <div class="caption">$i18n{forward}</div>
44 </div> 44 </div>
45 </body> 45 </body>
46 46
47 <!-- Run script after creating body, to let it add its own elements. --> 47 <!-- Run script after creating body, to let it add its own elements. -->
48 <script src="chrome://resources/js/cr.js"></script>
48 <script src="vr_shell_ui_api.js"></script> 49 <script src="vr_shell_ui_api.js"></script>
49 <script src="vr_shell_ui_scene.js"></script> 50 <script src="vr_shell_ui_scene.js"></script>
50 <script src="vr_shell_ui.js"></script> 51 <script src="vr_shell_ui.js"></script>
51 </html> 52 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698