Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 <link rel="import" href="chrome://resources/html/polymer.html"> | |
| 2 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button.html"> | |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-item/paper-item.h tml"> | |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu/paper-menu.h tml"> | |
| 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-menu-button/paper -menu-button.html"> | |
| 6 <link rel="import" href="/i18n_setup.html"> | |
| 7 <link rel="import" href="/settings_shared_css.html"> | |
| 8 <link rel="import" href="/site_settings/site_settings_behavior.html"> | |
| 9 <link rel="import" href="/site_settings/site_settings_prefs_browser_proxy.html"- -> | |
|
dschuyler
2016/08/11 23:28:07
It looks like there is the end of a comment on thi
Finnur
2016/08/12 13:11:26
Good catch.
| |
| 10 | |
| 11 <dom-module id="usb-devices"> | |
| 12 <template> | |
| 13 <style include="settings-shared"> | |
| 14 :host { | |
| 15 display: block; | |
| 16 } | |
| 17 </style> | |
| 18 | |
| 19 <template is="dom-repeat" items="[[devices]]"> | |
| 20 <div class="site-settings-header">[[item.objectName]]</div> | |
| 21 | |
| 22 <div class="list-frame menu-content vertical-list"> | |
| 23 <div class="list-item"> | |
| 24 <div class="favicon-image" | |
| 25 style$="[[computeSiteIcon(item.origin)]]"></div> | |
| 26 <div class="middle">[[item.origin]]</div> | |
| 27 | |
|
dschuyler
2016/08/11 23:28:07
This blank line seems unnecessary.
Finnur
2016/08/12 13:11:26
Done.
| |
| 28 <paper-menu-button> | |
| 29 <paper-icon-button icon="cr:more-vert" | |
| 30 class="dropdown-trigger"> | |
| 31 </paper-icon-button> | |
| 32 <paper-menu id="actionMenu" class="dropdown-content" | |
| 33 on-iron-activate="onActionMenuIronActivate_" | |
| 34 attr-for-selected="menu-value"> | |
| 35 <paper-item menu-value$="[[menuActions_.REMOVE]]"> | |
| 36 $i18n{handlerRemove} | |
| 37 </paper-item> | |
| 38 </paper-menu> | |
| 39 </paper-menu-button> | |
| 40 </div> | |
| 41 </div> | |
| 42 </template> | |
| 43 | |
| 44 </template> | |
| 45 <script src="usb_devices.js"></script> | |
| 46 </dom-module> | |
| OLD | NEW |