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

Unified Diff: chrome/browser/resources/vr_shell/vr_shell_ui.html

Issue 2473443002: Add an initial omnibox to HTML UI content. (Closed)
Patch Set: Rebase Created 4 years, 1 month 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 side-by-side diff with in-line comments
Download patch
« 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 »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/vr_shell/vr_shell_ui.html
diff --git a/chrome/browser/resources/vr_shell/vr_shell_ui.html b/chrome/browser/resources/vr_shell/vr_shell_ui.html
index e7caedb5be48f9ab4d0bf4ff9c407288b061a35b..2efc4faa629d1b0294a4b4da33475dd86740d0f6 100644
--- a/chrome/browser/resources/vr_shell/vr_shell_ui.html
+++ b/chrome/browser/resources/vr_shell/vr_shell_ui.html
@@ -18,31 +18,42 @@ found in the LICENSE file.
<link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
</head>
<body>
- <div id="webvr-not-secure-permanent" class="webvr-message-box">
- <div class="webvr-box">
- <img class="webvr-not-secure-icon" width="36" height="36"
+ <div id="ui">
+ <div id="webvr-not-secure-permanent" class="webvr-message-box">
+ <div class="webvr-box">
+ <img class="webvr-not-secure-icon" width="36" height="36"
+ src="../../../../ui/webui/resources/images/i_circle.svg">
+ <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div>
+ </div>
+ </div>
+ <div id="webvr-not-secure-transient" class="webvr-message-box">
+ <div>
+ <div>$i18n{insecureWebVrContentTransient}</div>
+ </div>
+ </div>
+
+ <div id="omni">
+ <img id="connection-security"
src="../../../../ui/webui/resources/images/i_circle.svg">
- <div class="webvr-string">$i18n{insecureWebVrContentPermanent}</div>
+ <div id="url">
+ <span id="domain"></span><span id="path"></span>
+ </div>
</div>
- </div>
- <div id="webvr-not-secure-transient" class="webvr-message-box">
- <div>
- <div>$i18n{insecureWebVrContentTransient}</div>
+
+ <div class="round-button" id="back">
+ <div class="button"></div>
+ <div class="caption">$i18n{back}</div>
</div>
+ <div class="round-button" id="reload">
+ <div class="button"></div>
+ <div class="caption">$i18n{reload}</div>
+ </div>
+ <div class="round-button" id="forward">
+ <div class="button"></div>
+ <div class="caption">$i18n{forward}</div>
+ </div>
+ <div id="reload-ui-button">Reload UI</div>
</div>
- <div class="round-button" id="back">
- <div class="button"></div>
- <div class="caption">$i18n{back}</div>
- </div>
- <div class="round-button" id="reload">
- <div class="button"></div>
- <div class="caption">$i18n{reload}</div>
- </div>
- <div class="round-button" id="forward">
- <div class="button"></div>
- <div class="caption">$i18n{forward}</div>
- </div>
- <div id="reload-ui-button">Reload UI</div>
</body>
<!-- Run script after creating body, to let it add its own elements. -->
« 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