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

Side by Side Diff: components/safe_browsing/web_ui/resources/safe_browsing.html

Issue 2964693003: Added experiments section and exported the list of SafeBrowsing features in WebUI (Closed)
Patch Set: Changed the location of features.cc/.h Created 3 years, 5 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
OLDNEW
1 <!DOCTYPE HTML> 1 <!DOCTYPE HTML>
2 <html> 2 <html>
3 <head> 3 <head>
4 <meta charset="utf-8"> 4 <meta charset="utf-8">
5 <title>Safe Browsing</title> 5 <title>Safe Browsing</title>
6 <link rel="stylesheet" href="safe_browsing.css"> 6 <link rel="stylesheet" href="safe_browsing.css">
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
8 <script src="chrome://resources/js/cr.js"></script> 8 <script src="chrome://resources/js/cr.js"></script>
9 <script src="chrome://resources/js/load_time_data.js"></script> 9 <script src="chrome://resources/js/load_time_data.js"></script>
10 <script src="chrome://resources/js/util.js"></script> 10 <script src="chrome://resources/js/util.js"></script>
11 <script src="safe_browsing.js"></script>
11 </head> 12 </head>
12 <body> 13 <body>
13 <h1>Safe Browsing</h1> 14 <div id="header">
15 <h1 id="sbTitle">Safe Browsing</h1>
16 </div>
14 <p>$i18n{sbUnderConstruction}</p> 17 <p>$i18n{sbUnderConstruction}</p>
18 <h2>Experiments</h2>
19 <div class="experiments">
20 <p id="experimentsList"></p>
21 </div>
15 <script src="chrome://resources/js/i18n_template.js"></script> 22 <script src="chrome://resources/js/i18n_template.js"></script>
16 </body> 23 </body>
17 </html> 24 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698