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

Unified Diff: components/webapks_ui/resources/about_webapks.html

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Add a chrome://webapks page. 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 side-by-side diff with in-line comments
Download patch
Index: components/webapks_ui/resources/about_webapks.html
diff --git a/components/webapks_ui/resources/about_webapks.html b/components/webapks_ui/resources/about_webapks.html
new file mode 100644
index 0000000000000000000000000000000000000000..e99804f5fd4401c6baa12578cb275804e735d36a
--- /dev/null
+++ b/components/webapks_ui/resources/about_webapks.html
@@ -0,0 +1,37 @@
+<!doctype html>
+
+<!--
+about:webapks template page
+-->
+
+<html id="t" i18n-values="dir:textdirection;lang:language">
Dan Beam 2017/01/24 18:41:50 where are you copying this from? can we do <html
gonzalon 2017/01/24 20:43:29 I think I based this from https://cs.chromium.org/
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width">
+ <title>About WebAPKs</title>
Dan Beam 2017/01/24 18:41:50 why are you varying direction and language if you'
gonzalon 2017/01/24 20:43:29 I was going to i18n at first, but I was then told
+ <link rel="stylesheet" href="chrome://resources/css/text_defaults.css">
+ <link rel="stylesheet" href="chrome://webapks/about_webapks.css">
+
+ <script src="chrome://resources/js/cr.js"></script>
+ <script src="chrome://resources/js/load_time_data.js"></script>
+ <script src="chrome://resources/js/parse_html_subset.js"></script>
+ <script src="chrome://resources/js/util.js"></script>
+ <script src="chrome://webapks/webapks.js"></script>
+ <script src="chrome://webapks/strings.js"></script>
+ </head>
+
+ <body>
+ <div id="outer">
+ <div id="logo">
+ <img src="../../../components/resources/default_100_percent/%DISTRIBUTION%/product_logo.png">
+ </div>
+
+ <br><br>
Dan Beam 2017/01/24 18:41:50 you should not need <br> tags, you can likely just
gonzalon 2017/01/24 20:43:29 Done.
+ <div>
+ <span class="label">WebAPKs:</span>
+ </div>
+
+ <div class="content" id="webapks-list"></div>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698