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

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

Issue 11415063: Adds about:user-actions page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: remove extraneous comment Created 8 years, 1 month 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/user_actions/user_actions.html
diff --git a/chrome/browser/resources/user_actions/user_actions.html b/chrome/browser/resources/user_actions/user_actions.html
new file mode 100644
index 0000000000000000000000000000000000000000..9e1b2501461e5831a5ec75486a5855eaaf6e5e3c
--- /dev/null
+++ b/chrome/browser/resources/user_actions/user_actions.html
@@ -0,0 +1,19 @@
+<!DOCTYPE HTML>
+<html>
+<head>
+ <meta charset="utf-8">
+ <title>User Actions Debug Page</title>
+ <link rel="stylesheet" href="user_actions.css">
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="user_actions.js"></script>
+</head>
+<body>
+ <p>
+ Listening for user actions...
+ </p>
+ <table id="user-actions-table">
+ <thead><th>User Action</th><th>Timestamp (sec.)</th></thead>
+ </table>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698