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

Unified 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, 10 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/chromeos/idle_logout_dialog.html
diff --git a/chrome/browser/resources/chromeos/idle_logout_dialog.html b/chrome/browser/resources/chromeos/idle_logout_dialog.html
new file mode 100644
index 0000000000000000000000000000000000000000..9ad7c0c206b6aaa8611a3e24d05cba8bb0e32164
--- /dev/null
+++ b/chrome/browser/resources/chromeos/idle_logout_dialog.html
@@ -0,0 +1,24 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection">
+ <head>
+ <meta charset="utf-8">
+ <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
+ <link rel="stylesheet" href="idle_logout_dialog.css">
+ <link rel="stylesheet" href="chrome://resources/css/chrome_shared.css">
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/i18n_template.js"></script>
+ <script src="chrome://resources/js/local_strings.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="chrome://idle-logout/strings.js"></script>
+ <script src="idle_logout_dialog.js"></script>
+ </head>
+
+ <body>
+ <div class="main-box">
+ <div id="title" i18n-content="title">
+ </div>
+ <div id="warning">
+ </div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698