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

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

Issue 2615003004: Support showing loading progress in the VR omnibox. (Closed)
Patch Set: Address nits. Created 3 years, 11 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 13 matching lines...) Expand all
24 <img class="webvr-not-secure-icon" width="36" height="36" 24 <img class="webvr-not-secure-icon" width="36" height="36"
25 src="../../../../ui/webui/resources/images/i_circle.svg"> 25 src="../../../../ui/webui/resources/images/i_circle.svg">
26 <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div> 26 <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div>
27 </div> 27 </div>
28 </div> 28 </div>
29 <div id="webvr-not-secure-transient" class="webvr-message-box ui-element"> 29 <div id="webvr-not-secure-transient" class="webvr-message-box ui-element">
30 <div> 30 <div>
31 <div>$i18n{insecureWebVrContentTransient}</div> 31 <div>$i18n{insecureWebVrContentTransient}</div>
32 </div> 32 </div>
33 </div> 33 </div>
34 <div id="omni-container" class="ui-element"> 34 <div id="omnibox-container" class="ui-element">
35 <div id="omni" class="idle"> 35 <div id="omnibox-border">
36 <div id="omni-content"> 36 <div id="omnibox">
37 <div id="omni-info-icon" class="omni-icon"></div> 37 <div id="omnibox-content">
38 <div id="omni-lock-icon" class="omni-icon"></div> 38 <div id="omnibox-info-icon" class="omnibox-icon"></div>
39 <div id="omni-warning-icon" class="omni-icon"></div> 39 <div id="omnibox-lock-icon" class="omnibox-icon"></div>
40 <div id="url"> 40 <div id="omnibox-warning-icon" class="omnibox-icon"></div>
41 <span id="domain"></span><span id="path"></span> 41 <div id="url">
42 <span id="domain"></span><span id="path"></span>
43 </div>
42 </div> 44 </div>
43 </div> 45 </div>
44 </div> 46 </div>
45 </div> 47 </div>
46 <div id="back" class="round-button ui-element"> 48 <div id="back" class="round-button ui-element">
47 <div class="button"></div> 49 <div class="button"></div>
48 <div class="caption">$i18n{back}</div> 50 <div class="caption">$i18n{back}</div>
49 </div> 51 </div>
50 <div id="reload" class="round-button ui-element"> 52 <div id="reload" class="round-button ui-element">
51 <div class="button"></div> 53 <div class="button"></div>
52 <div class="caption">$i18n{reload}</div> 54 <div class="caption">$i18n{reload}</div>
53 </div> 55 </div>
54 <div id="forward" class="round-button ui-element"> 56 <div id="forward" class="round-button ui-element">
55 <div class="button"></div> 57 <div class="button"></div>
56 <div class="caption">$i18n{forward}</div> 58 <div class="caption">$i18n{forward}</div>
57 </div> 59 </div>
58 <div id="reload-ui-button" class="ui-element">Reload UI</div> 60 <div id="reload-ui-button" class="ui-element">Reload UI</div>
59 </div> 61 </div>
60 </body> 62 </body>
61 63
62 <!-- Run script after creating body, to let it add its own elements. --> 64 <!-- Run script after creating body, to let it add its own elements. -->
63 <script src="vr_shell_ui_api.js"></script> 65 <script src="vr_shell_ui_api.js"></script>
64 <script src="vr_shell_ui_scene.js"></script> 66 <script src="vr_shell_ui_scene.js"></script>
65 <script src="vr_shell_ui.js"></script> 67 <script src="vr_shell_ui.js"></script>
66 </html> 68 </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