| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/icons.html"> |
| 2 <link rel="import" href="chrome://resources/html/polymer.html"> | 2 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> | 3 <link rel="import" href="chrome://resources/polymer/v1_0/iron-flex-layout/classe
s/iron-flex-layout.html"> |
| 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> | 5 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_icon.
html"> |
| 6 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> | 6 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm
l"> |
| 7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> | 7 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_behavior.html"> |
| 8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> | 8 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network
_indicator.html"> |
| 9 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> | 9 <link rel="import" href="chrome://resources/cr_elements/shared_style_css.html"> |
| 10 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> | |
| 11 | 10 |
| 12 <dom-module id="cr-network-list-item"> | 11 <dom-module id="cr-network-list-item"> |
| 13 <template> | 12 <template> |
| 14 <style include="cr-shared-style"> | 13 <style include="cr-shared-style"> |
| 15 :host { | 14 :host { |
| 16 display: inline-block; | 15 display: inline-block; |
| 17 outline: none; | 16 outline: none; |
| 18 } | 17 } |
| 19 | 18 |
| 20 #divDetail { | 19 #divDetail { |
| (...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 109 <template is="dom-if" | 108 <template is="dom-if" |
| 110 if="[[isSubpageButtonVisible_(networkState, showButtons)]]"> | 109 if="[[isSubpageButtonVisible_(networkState, showButtons)]]"> |
| 111 <button class="subpage-arrow" is="paper-icon-button-light" | 110 <button class="subpage-arrow" is="paper-icon-button-light" |
| 112 on-tap="fireShowDetails_" tabindex$="[[tabindex]]"> | 111 on-tap="fireShowDetails_" tabindex$="[[tabindex]]"> |
| 113 </button> | 112 </button> |
| 114 </template> | 113 </template> |
| 115 </div> | 114 </div> |
| 116 </template> | 115 </template> |
| 117 <script src="cr_network_list_item.js"></script> | 116 <script src="cr_network_list_item.js"></script> |
| 118 </dom-module> | 117 </dom-module> |
| OLD | NEW |