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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection">
3 <head>
4 <meta charset="utf-8">
5 <title i18n-content="title"></title>
6 <link rel="stylesheet" href="kiosk_mode_logout_dialog.css">
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <script src="chrome://kiosk-mode-logout/strings.js"></script>
9 <script src="chrome://resources/js/cr.js"></script>
10 <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.
11 <script src="chrome://resources/js/i18n_template.js"></script>
12 <script src="chrome://resources/js/util.js"></script>
13 <script src="chrome://kiosk-mode-logout/kiosk_mode_logout_dialog.js"></scrip t>
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.
14 </head>
15
16 <body i18n-values=".style.fontFamily:fontfamily;.style.fontSize:fontsize">
17 <div class="main-box">
18 <div id="title-box">
19 <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.
20 </div>
21 <div id="warning-box">
22 <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.
23 </div>
24 </div>
25 </body>
26 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698