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

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

Issue 2162803002: MD Settings: Replace paper-item with button under iron-dropdown, part1. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix failing ChromeOS test. 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
« no previous file with comments | « no previous file | chrome/browser/resources/settings/certificate_manager_page/certificate_subentry.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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="/certificate_manager_page/certificates_browser_proxy.ht ml"> 2 <link rel="import" href="/certificate_manager_page/certificates_browser_proxy.ht ml">
3 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html"> 3 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa nd_button.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll apse.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/iron-dropdown/iron-drop down.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml">
7 <link rel="import" href="/settings_shared_css.html"> 6 <link rel="import" href="/settings_shared_css.html">
8 <link rel="import" href="/certificate_manager_page/certificate_subentry.html"> 7 <link rel="import" href="/certificate_manager_page/certificate_subentry.html">
9 8
10 <dom-module id="settings-certificate-entry"> 9 <dom-module id="settings-certificate-entry">
11 <template> 10 <template>
12 <style include="settings-shared"></style> 11 <style include="settings-shared"></style>
13 <div class="settings-box"> 12 <div class="settings-box">
14 <div class="start">[[model.id]]</div> 13 <div class="start">[[model.id]]</div>
15 <cr-expand-button expanded="{{expanded_}}"></cr-expand-button> 14 <cr-expand-button expanded="{{expanded_}}"></cr-expand-button>
16 </div> 15 </div>
17 <iron-collapse opened="[[expanded_]]" no-animation> 16 <iron-collapse opened="[[expanded_]]" no-animation>
18 <template is="dom-if" if="[[expanded_]]"> 17 <template is="dom-if" if="[[expanded_]]">
19 <div class="list-frame"> 18 <div class="list-frame">
20 <template is="dom-repeat" items="[[model.subnodes]]"> 19 <template is="dom-repeat" items="[[model.subnodes]]">
21 <settings-certificate-subentry model="[[item]]" 20 <settings-certificate-subentry model="[[item]]"
22 certificate-type="[[certificateType]]" 21 certificate-type="[[certificateType]]"
23 is-last$="[[isLast_(index, model)]]"> 22 is-last$="[[isLast_(index, model)]]">
24 </settings-certificate-subentry> 23 </settings-certificate-subentry>
25 </template> 24 </template>
26 </div> 25 </div>
27 </template> 26 </template>
28 <iron-collapse> 27 <iron-collapse>
29 </template> 28 </template>
30 <script src="certificate_entry.js"></script> 29 <script src="certificate_entry.js"></script>
31 </dom-module> 30 </dom-module>
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/settings/certificate_manager_page/certificate_subentry.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698