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

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

Issue 6644002: [ChromeOS] Implement collected cookies in webui. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: address comments in patch set 4 and 5 Created 9 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/collected_cookies.html
diff --git a/chrome/browser/resources/collected_cookies.html b/chrome/browser/resources/collected_cookies.html
new file mode 100644
index 0000000000000000000000000000000000000000..293e11fa08f4414aae43f0bf71ef2649dbe1b336
--- /dev/null
+++ b/chrome/browser/resources/collected_cookies.html
@@ -0,0 +1,35 @@
+<!DOCTYPE HTML>
+<html i18n-values="dir:textdirection;">
+
+<head>
+<meta charset="utf-8">
+<title i18n-content="title"></title>
+<link rel="stylesheet" href="chrome://resources/css/tree.css">
+<link rel="stylesheet" href="collected_cookies.css">
+</head>
+
+<script src="chrome://resources/css/tree.css.js"></script>
+
+<script src="chrome://resources/js/cr.js"></script>
+<script src="chrome://resources/js/cr/ui.js"></script>
+<script src="chrome://resources/js/cr/ui/tree.js"></script>
+<script src="chrome://resources/js/util.js"></script>
+<script src="cookies_tree.js"></script>
+<script src="collected_cookies.js"></script>
+
+<body>
+
+<div id="info-banner" hidden></div>
+
+<p i18n-content="allowedCookies"></p>
+<tree id="allowed-cookies" class="cookies-tree"></tree>
+<button id="block-button" i18n-content="blockButton"></button>
+
+<p i18n-content="blockedCookies"></p>
+<tree id="blocked-cookies" class="cookies-tree"></tree>
+<button id="allow-button" i18n-content="allowButton"></button>
+<button id="allow-this-session-button"
+ i18n-content="allowThisSessionButton"></button>
+<button id="close-button" i18n-content="closeButton"></button>
+</body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698