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

Side by Side Diff: components/webapks_ui/resources/about_webapks.html

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Adds an about:webapks page with information about all installed Web APKs on the device Created 3 years, 11 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
(Empty)
1 <!doctype html>
2
3 <!--
4 about:webapks template page
5 -->
6
7 <html id="t" i18n-values="dir:textdirection;lang:language">
8 <head>
9 <meta charset="utf-8">
10 <meta name="viewport" content="width=device-width">
11 <title i18n-content="title"></title>
12 <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
13 <link rel="stylesheet" href="chrome://webapks/about_webapks.css">
14
15 <script src="chrome://resources/js/cr.js"></script>
16 <script src="chrome://resources/js/load_time_data.js"></script>
17 <script src="chrome://resources/js/parse_html_subset.js"></script>
18 <script src="chrome://resources/js/util.js"></script>
19 <script src="chrome://webapks/webapks.js"></script>
20 <script src="chrome://webapks/strings.js"></script>
21 </head>
22
23 <body>
24 <div id="outer">
25 <div id="logo">
26 <img src="../../../components/resources/default_100_percent/%DISTRIBUTIO N%/product_logo.png">
27 </div>
28
29 <br><br>
30 <div>
31 <span class="label" i18n-content="header"></span>
32 </div>
33
34 <div class="content" id="webapks-list"></div>
35
36 <script src="chrome://resources/js/i18n_template.js"></script>
pkotwicz 2017/01/13 17:00:58 Nit: You did not close the outer <div>
gonzalon 2017/01/13 20:24:40 Done.
37 </body>
38 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698