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

Side by Side Diff: chrome/browser/resources/settings/internet_page/network_summary_item.html

Issue 2684193005: MD Settings: Internet: Request network scan (Closed)
Patch Set: . Created 3 years, 10 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/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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 49
50 #networkList { 50 #networkList {
51 margin: 5px 0 10px; 51 margin: 5px 0 10px;
52 max-height: 200px; 52 max-height: 200px;
53 min-height: 50px; 53 min-height: 50px;
54 } 54 }
55 </style> 55 </style>
56 <div class="settings-box two-line" actionable on-tap="onDetailsTap_"> 56 <div class="settings-box two-line" actionable on-tap="onDetailsTap_">
57 <div id="details" 57 <div id="details"
58 no-flex$="[[showSimInfo_(deviceState)]]"> 58 no-flex$="[[showSimInfo_(deviceState)]]">
59 <cr-network-list-item item="[[activeNetworkState]]"> 59 <cr-network-list-item item="[[activeNetworkState]]" class="flex">
60 </cr-network-list-item> 60 </cr-network-list-item>
61 <paper-spinner active="[[scanningIsActive_(deviceState, expanded_)]]" 61 <paper-spinner active="[[scanningIsActive_(deviceState, expanded_)]]"
62 hidden$="[[!scanningIsVisible_(deviceState)]]"> 62 hidden$="[[!scanningIsVisible_(deviceState)]]">
63 </paper-spinner> 63 </paper-spinner>
64 </div> 64 </div>
65 65
66 <template is="dom-if" if="[[showSimInfo_(deviceState)]]"> 66 <template is="dom-if" if="[[showSimInfo_(deviceState)]]">
67 <network-siminfo editable class="flex" 67 <network-siminfo editable class="flex"
68 network-properties="[[getCellularState_(deviceState)]]" 68 network-properties="[[getCellularState_(deviceState)]]"
69 networking-private="[[networkingPrivate]]"> 69 networking-private="[[networkingPrivate]]">
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 $i18n{knownNetworksButton} 111 $i18n{knownNetworksButton}
112 </a> 112 </a>
113 </div> 113 </div>
114 </template> 114 </template>
115 </div> 115 </div>
116 </iron-collapse> 116 </iron-collapse>
117 </template> 117 </template>
118 </template> 118 </template>
119 <script src="network_summary_item.js"></script> 119 <script src="network_summary_item.js"></script>
120 </dom-module> 120 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698