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

Side by Side Diff: chrome/browser/resources/chromeos/idle_logout_dialog.html

Issue 9568038: Implement the auto-logout on idle feature for Kiosk mode. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review changes. Created 8 years, 9 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></title>
arv (Not doing code reviews) 2012/03/02 00:15:33 Why the empty title?
rkc 2012/03/02 01:20:56 The window won't have a titlebar show up at all. R
6 <link rel="stylesheet" href="idle_logout_dialog.css">
7 <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
8 <script src="chrome://resources/js/cr.js"></script>
9 <script src="chrome://resources/js/i18n_template.js"></script>
10 <script src="chrome://resources/js/local_strings.js"></script>
11 <script src="chrome://resources/js/util.js"></script>
12 <script src="chrome://idle-logout/strings.js"></script>
13 <script src="idle_logout_dialog.js"></script>
14 </head>
15
16 <body>
17 <div class="main-box">
18 <div id="title" i18n-content="title">
19 </div>
20 <div id="warning">
21 </div>
22 </div>
23 </body>
24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698