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

Side by Side Diff: chrome/browser/resources/cleanup_tool/cleanup.html

Issue 2788743002: Cleanup Tool WebUI: Add functional HTML and skeleton JS for main content (Closed)
Patch Set: Fix typo and make manager.js closure deps include cleanup_browser_proxy Created 3 years, 8 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 dir="$i18n{textdirection}" lang="$i18n{language}"> 2 <html dir="$i18n{textdirection}" lang="$i18n{language}">
3 <head> 3 <head>
4 <meta name="google" value="notranslate"> 4 <meta name="google" value="notranslate">
5 <meta charset="utf-8"> 5 <meta charset="utf-8">
6 <title>$i18n{title}</title> 6 <title>$i18n{title}</title>
7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css"> 7 <link rel="stylesheet" href="chrome://resources/css/text_defaults_md.css">
8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css"> 8 <link rel="stylesheet" href="chrome://resources/css/md_colors.css">
9 9
10 <style> 10 <style>
(...skipping 12 matching lines...) Expand all
23 </style> 23 </style>
24 </head> 24 </head>
25 25
26 <body> 26 <body>
27 <cleanup-tool-toolbar></cleanup-tool-toolbar> 27 <cleanup-tool-toolbar></cleanup-tool-toolbar>
28 <cleanup-manager></cleanup-manager> 28 <cleanup-manager></cleanup-manager>
29 <link rel="import" href="chrome://resources/html/cr.html"> 29 <link rel="import" href="chrome://resources/html/cr.html">
30 <link rel="import" href="chrome://resources/html/load_time_data.html"> 30 <link rel="import" href="chrome://resources/html/load_time_data.html">
31 <link rel="import" href="chrome://resources/html/polymer.html"> 31 <link rel="import" href="chrome://resources/html/polymer.html">
32 <link rel="import" href="chrome://cleanup/cleanup_browser_proxy.html"> 32 <link rel="import" href="chrome://cleanup/cleanup_browser_proxy.html">
33 <link rel="import" href="chrome://cleanup/icons.html">
34 <link rel="import" href="chrome://cleanup/manager.html">
33 <link rel="import" href="chrome://cleanup/toolbar.html"> 35 <link rel="import" href="chrome://cleanup/toolbar.html">
34 <script src="strings.js"></script> 36 <script src="strings.js"></script>
35 </body> 37 </body>
36 38
37 </html> 39 </html>
OLDNEW
« no previous file with comments | « chrome/browser/browser_resources.grd ('k') | chrome/browser/resources/cleanup_tool/cleanup_browser_proxy.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698