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

Unified Diff: chrome/browser/resources/settings/certificate_manager_page/certificate_list.html

Issue 1819563002: MD Settings: Certificate manager, populate UI. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 9 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: chrome/browser/resources/settings/certificate_manager_page/certificate_list.html
diff --git a/chrome/browser/resources/settings/certificate_manager_page/certificate_list.html b/chrome/browser/resources/settings/certificate_manager_page/certificate_list.html
new file mode 100644
index 0000000000000000000000000000000000000000..39ce67bd330b972ab6a7134cde08771b56584c46
--- /dev/null
+++ b/chrome/browser/resources/settings/certificate_manager_page/certificate_list.html
@@ -0,0 +1,17 @@
+<link rel="import" href="chrome://resources/html/polymer.html">
+<link rel="import" href="chrome://md-settings/certificate_manager_page/certificate_entry.html">
+
+<dom-module id="settings-certificate-list">
+ <template>
+ <template is="dom-repeat" items="[[certificates]]">
+ <settings-certificate-entry model="[[item]]"
+ certificate-type="[[certificateType]]">
+ </settings-certificate-entry>
+ </template>
+ <template is="dom-if" if="[[!certificates.length]]">
+ <!-- TODO(dpapad): Localize string -->
+ You have no certificates
+ </template>
+ </template>
+ <script src="certificate_list.js"></script>
+</dom-module>

Powered by Google App Engine
This is Rietveld 408576698