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

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

Issue 2784303002: Adds button to VRShell menu mode, which lets the user manually exit WebVR presentation. (Closed)
Patch Set: Fixed closure compiler error Created 3 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
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 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 <div id="omnibox-clear-button"></div> 60 <div id="omnibox-clear-button"></div>
61 <input id="omnibox-input-field" type="url"></input> 61 <input id="omnibox-input-field" type="url"></input>
62 </div> 62 </div>
63 </div> 63 </div>
64 </div> 64 </div>
65 <div id="back-indicator" class="gesture-indicator ui-element"></div> 65 <div id="back-indicator" class="gesture-indicator ui-element"></div>
66 <div id="forward-indicator" class="gesture-indicator ui-element"></div> 66 <div id="forward-indicator" class="gesture-indicator ui-element"></div>
67 <div id="back-button" class="round-button ui-element"></div> 67 <div id="back-button" class="round-button ui-element"></div>
68 <div id="reload-button" class="round-button ui-element"></div> 68 <div id="reload-button" class="round-button ui-element"></div>
69 <div id="forward-button" class="round-button ui-element"></div> 69 <div id="forward-button" class="round-button ui-element"></div>
70 <div id="exit-present-button" class="round-button ui-element"></div>
70 <div id="back-button-caption" class="button-caption ui-element"> 71 <div id="back-button-caption" class="button-caption ui-element">
71 $i18n{back} 72 $i18n{back}
72 </div> 73 </div>
73 <div id="reload-button-caption" class="button-caption ui-element"> 74 <div id="reload-button-caption" class="button-caption ui-element">
74 $i18n{reload} 75 $i18n{reload}
75 </div> 76 </div>
76 <div id="forward-button-caption" class="button-caption ui-element"> 77 <div id="forward-button-caption" class="button-caption ui-element">
77 $i18n{forward} 78 $i18n{forward}
78 </div> 79 </div>
80 <div id="exit-present-button-caption" class="button-caption ui-element">
81 $i18n{exitPresent}
82 </div>
79 <div id="reload-ui-button" class="ui-element">Reload UI</div> 83 <div id="reload-ui-button" class="ui-element">Reload UI</div>
80 <div id="content-interceptor" class="ui-element"></div> 84 <div id="content-interceptor" class="ui-element"></div>
81 <div id="tab-template" class="tab"></div> 85 <div id="tab-template" class="tab"></div>
82 <!--The tab container element behaves like a scroll view (in conjunction 86 <!--The tab container element behaves like a scroll view (in conjunction
83 with the clip view). --> 87 with the clip view). -->
84 <div id="tab-container" class="ui-element"> 88 <div id="tab-container" class="ui-element">
85 <!--The tab clip element's width will be programmatically set to the total 89 <!--The tab clip element's width will be programmatically set to the total
86 width of all it's children (the tabs). By doing so, the tabs can be 90 width of all it's children (the tabs). By doing so, the tabs can be
87 scrolled horizontally in the tab container element.--> 91 scrolled horizontally in the tab container element.-->
88 <div id="tab-clip"> 92 <div id="tab-clip">
(...skipping 16 matching lines...) Expand all
105 </div> 109 </div>
106 </div> 110 </div>
107 </body> 111 </body>
108 112
109 <!-- Run script after creating body, to let it add its own elements. --> 113 <!-- Run script after creating body, to let it add its own elements. -->
110 <script src="vr_shell_ui_api.js"></script> 114 <script src="vr_shell_ui_api.js"></script>
111 <script src="vr_shell_ui_scene.js"></script> 115 <script src="vr_shell_ui_scene.js"></script>
112 <script src="vr_shell_ui.js"></script> 116 <script src="vr_shell_ui.js"></script>
113 <script src="vk.js"></script> 117 <script src="vk.js"></script>
114 </html> 118 </html>
OLDNEW
« no previous file with comments | « chrome/browser/resources/vr_shell/vr_shell_ui.css ('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