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

Side by Side 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 oshima's comments #2 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 <!DOCTYPE HTML>
2 <html i18n-values="dir:textdirection;">
3
4 <head>
5 <meta charset="utf-8">
6 <title i18n-content="title"></title>
7 <link rel="stylesheet" href="chrome://resources/css/tree.css">
8 <link rel="stylesheet" href="collected_cookies.css">
9 </head>
10
11 <script src="chrome://resources/css/tree.css.js"></script>
12
13 <script src="chrome://resources/js/cr.js"></script>
14 <script src="chrome://resources/js/cr/ui.js"></script>
15 <script src="chrome://resources/js/cr/ui/tree.js"></script>
16 <script src="chrome://resources/js/util.js"></script>
17 <script src="cookies_tree.js"></script>
18 <script src="collected_cookies.js"></script>
19
20 <body oncontextmenu="return false;">
21
22 <div id="info-banner" hidden></div>
23
24 <p i18n-content="allowedCookies"></p>
25 <tree id="allowed-cookies" class="cookies-tree"></tree>
26 <button id="block-button" i18n-content="blockButton"></button>
27
28 <p i18n-content="blockedCookies"></p>
29 <tree id="blocked-cookies" class="cookies-tree"></tree>
30 <button id="allow-button" i18n-content="allowButton"></button>
31 <button id="allow-this-session-button"
32 i18n-content="allowThisSessionButton"></button>
33 <button id="close-button" i18n-content="closeButton"></button>
34 </body>
35 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698