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

Unified Diff: chrome/browser/resources/kiosk_mode_logout_dialog.html

Issue 9265026: Implement restart on Idle for Kiosk Mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/kiosk_mode_logout_dialog.html
diff --git a/chrome/browser/resources/kiosk_mode_logout_dialog.html b/chrome/browser/resources/kiosk_mode_logout_dialog.html
new file mode 100644
index 0000000000000000000000000000000000000000..ba73e05a0cd9877c5edd46524570532fe3edcd02
--- /dev/null
+++ b/chrome/browser/resources/kiosk_mode_logout_dialog.html
@@ -0,0 +1,26 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
+ <head>
+ <meta charset="utf-8">
+ <title i18n-content="title"></title>
+ <link rel="stylesheet" href="kiosk_mode_logout_dialog.css">
+ <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+ <script src="chrome://kiosk-mode-logout/strings.js"></script>
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/cr/ui.js"></script>
xiyuan 2012/01/20 18:23:44 we probably don't need this.
rkc 2012/01/26 03:37:23 Done.
+ <script src="chrome://resources/js/i18n_template.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="chrome://kiosk-mode-logout/kiosk_mode_logout_dialog.js"></script>
xiyuan 2012/01/20 18:23:44 If you want to try grit's inlining, change this to
rkc 2012/01/26 03:37:23 Done.
+ </head>
+
+ <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
+ <div class="main-box">
+ <div id="title-box">
+ <div id="title" class="text" i18n-content="title"></div>
xiyuan 2012/01/20 18:23:44 nit: 2-space ident
rkc 2012/01/26 03:37:23 Done.
+ </div>
+ <div id="warning-box">
+ <div id="warning" class="text" i18n-values=".innerHTML:warning"></div>
xiyuan 2012/01/20 18:23:44 No need to have i18n-values here since you will se
rkc 2012/01/26 03:37:23 Done.
+ </div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698