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

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

Issue 2363553003: VrShell: implement insecure content warning display (Closed)
Patch Set: Rebase to ToT (no changes to patched files) 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 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 4cd5ace00c6038e043499b80c96dafd6d48160ae..d3f404766f73e2a32f15dda3d63c49987722cafd 100644
--- a/chrome/browser/resources/vr_shell/vr_shell_ui.html
+++ b/chrome/browser/resources/vr_shell/vr_shell_ui.html
@@ -15,8 +15,22 @@ found in the LICENSE file.
</if>
<title>Vr Shell UIs</title>
<link rel="stylesheet" href="vr_shell_ui.css">
+<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"
+ 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>
+
</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