| OLD | NEW |
| 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> | 1 <link rel="import" href="chrome://resources/cr_elements/cr_expand_button/cr_expa
nd_button.html"> |
| 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list.
html"> | 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list.
html"> |
| 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list_
item.html"> | 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_network_list_
item.html"> |
| 4 <link rel="import" href="chrome://resources/html/action_link.html"> | 4 <link rel="import" href="chrome://resources/html/action_link.html"> |
| 5 <link rel="import" href="chrome://resources/html/action_link_css.html"> | 5 <link rel="import" href="chrome://resources/html/action_link_css.html"> |
| 6 <link rel="import" href="chrome://resources/html/polymer.html"> | 6 <link rel="import" href="chrome://resources/html/polymer.html"> |
| 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> | 7 <link rel="import" href="chrome://resources/polymer/v1_0/iron-a11y-keys-behavior
/iron-a11y-keys-behavior.html"> |
| 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> | 8 <link rel="import" href="chrome://resources/polymer/v1_0/iron-collapse/iron-coll
apse.html"> |
| 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> | 9 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button.html"> |
| 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> | 10 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper
-icon-button-light.html"> |
| (...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 </template> | 71 </template> |
| 72 | 72 |
| 73 <div id="buttons" class="layout horizontal"> | 73 <div id="buttons" class="layout horizontal"> |
| 74 <template is="dom-if" | 74 <template is="dom-if" |
| 75 if="[[expandIsVisible_(deviceState, networkStateList)]]"> | 75 if="[[expandIsVisible_(deviceState, networkStateList)]]"> |
| 76 <cr-expand-button id="expandListButton" expanded="{{expanded_}}"> | 76 <cr-expand-button id="expandListButton" expanded="{{expanded_}}"> |
| 77 </cr-expand-button> | 77 </cr-expand-button> |
| 78 </template> | 78 </template> |
| 79 <template is="dom-if" | 79 <template is="dom-if" |
| 80 if="[[showDetailsIsVisible_(deviceState, networkStateList)]]"> | 80 if="[[showDetailsIsVisible_(deviceState, networkStateList)]]"> |
| 81 <!-- TODO(dbeam): this needs an aria-label. Maybe |
| 82 [[activeNetworkState.name]]? --> |
| 81 <button class="subpage-arrow" is="paper-icon-button-light" | 83 <button class="subpage-arrow" is="paper-icon-button-light" |
| 82 on-tap="onShowDetailsTap_"> | 84 on-tap="onShowDetailsTap_"> |
| 83 </button> | 85 </button> |
| 84 </template> | 86 </template> |
| 85 </div> | 87 </div> |
| 86 | 88 |
| 87 <template is="dom-if" if="[[enableToggleIsVisible_(deviceState)]]"> | 89 <template is="dom-if" if="[[enableToggleIsVisible_(deviceState)]]"> |
| 88 <div class="secondary-action"> | 90 <div class="secondary-action"> |
| 89 <paper-toggle-button id="deviceEnabledButton" | 91 <paper-toggle-button id="deviceEnabledButton" |
| 90 checked="[[deviceIsEnabled_(deviceState)]]" | 92 checked="[[deviceIsEnabled_(deviceState)]]" |
| (...skipping 20 matching lines...) Expand all Loading... |
| 111 $i18n{knownNetworksButton} | 113 $i18n{knownNetworksButton} |
| 112 </a> | 114 </a> |
| 113 </div> | 115 </div> |
| 114 </template> | 116 </template> |
| 115 </div> | 117 </div> |
| 116 </iron-collapse> | 118 </iron-collapse> |
| 117 </template> | 119 </template> |
| 118 </template> | 120 </template> |
| 119 <script src="network_summary_item.js"></script> | 121 <script src="network_summary_item.js"></script> |
| 120 </dom-module> | 122 </dom-module> |
| OLD | NEW |