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

Side by Side Diff: chrome/browser/resources/settings/certificate_manager_page/certificate_list.html

Issue 2101243004: [MD settings] certificate manager closure compilation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: adding file Created 4 years, 5 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 <link rel="import" href="chrome://resources/html/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 <link rel="import" href="chrome://resources/html/assert.html"> 2 <link rel="import" href="chrome://resources/html/assert.html">
3 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 3 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
4 <link rel="import" href="/certificate_manager_page/certificate_entry.html"> 4 <link rel="import" href="/certificate_manager_page/certificate_entry.html">
5 <link rel="import" href="/certificate_manager_page/certificate_manager_types.htm l">
5 <link rel="import" href="/certificate_manager_page/certificates_browser_proxy.ht ml"> 6 <link rel="import" href="/certificate_manager_page/certificates_browser_proxy.ht ml">
6 <link rel="import" href="/i18n_setup.html"> 7 <link rel="import" href="/i18n_setup.html">
7 <link rel="import" href="/settings_shared_css.html"> 8 <link rel="import" href="/settings_shared_css.html">
8 9
9 <dom-module id="settings-certificate-list"> 10 <dom-module id="settings-certificate-list">
10 <template> 11 <template>
11 <style include="settings-shared"> 12 <style include="settings-shared">
12 .settings-box { 13 .settings-box {
13 margin-bottom: 24px; 14 margin-bottom: 24px;
14 } 15 }
15 </style> 16 </style>
16 <div class="settings-box first"> 17 <div class="settings-box first">
17 <span class="start"> 18 <span class="start">
18 [[getDescription_(certificateType, certificates)]]</span> 19 [[getDescription_(certificateType, certificates)]]</span>
19 <paper-button on-tap="onImportTap_" 20 <paper-button on-tap="onImportTap_"
20 hidden="[[!canImport_(certificateType)]]"> 21 hidden="[[!canImport_(certificateType)]]">
21 $i18n{certificateManagerImport}</paper-button> 22 $i18n{certificateManagerImport}</paper-button>
22 </div> 23 </div>
23 <template is="dom-repeat" items="[[certificates]]"> 24 <template is="dom-repeat" items="[[certificates]]">
24 <settings-certificate-entry model="[[item]]" 25 <settings-certificate-entry model="[[item]]"
25 certificate-type="[[certificateType]]"> 26 certificate-type="[[certificateType]]">
26 </settings-certificate-entry> 27 </settings-certificate-entry>
27 </template> 28 </template>
28 </template> 29 </template>
29 <script src="certificate_list.js"></script> 30 <script src="certificate_list.js"></script>
30 </dom-module> 31 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698