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

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

Issue 2629573004: Add a chrome://webapks page. (Closed)
Patch Set: Makes the listWebApks method receive a callback on the Java side 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..2c0749cbd968d0f485667cf8e14830c11749b1ed
--- /dev/null
+++ b/components/webapks_ui/resources/about_webapks.html
@@ -0,0 +1,39 @@
+<!doctype html>
+
+<!--
+about:webapks template page
+-->
+
+<html id="t" i18n-values="dir:textdirection;lang:language">
+ <head>
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width">
+ <title i18n-content="title"></title>
+ <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>
pkotwicz 2017/01/18 02:08:21 Nit: I think that <p> is the same as two <br>s
pkotwicz 2017/01/19 19:37:16 ^^^ I think that you missed this comment
gonzalon 2017/01/19 23:50:15 Done.
+ <div>
+ <span class="label" i18n-content="header"></span>
+ </div>
+
+ <div class="content" id="webapks-list"></div>
+
+ <script src="chrome://resources/js/i18n_template.js"></script>
+ </div>
+ </body>
+</html>

Powered by Google App Engine
This is Rietveld 408576698