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

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

Issue 1277223002: Add cr-network-select element for selecting a Chrome OS network (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@issue_515987_network_configure
Patch Set: Compile fix Created 5 years, 4 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/polymer/v1_0/polymer/polymer.html"> 1 <link rel="import" href="chrome://resources/polymer/v1_0/polymer/polymer.html">
2 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button .html"> 2 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_button/cr_button .html">
3 <link rel="import" href="chrome://resources/cr_elements/v1_0/cr_onc/cr_onc_types .html"> 3 <link rel="import" href="chrome://resources/cr_elements/v1_0/network/cr_onc_type s.html">
4 <link rel="import" href="network_property_list.html"> 4 <link rel="import" href="network_property_list.html">
5 5
6 <dom-module id="network-apnlist"> 6 <dom-module id="network-apnlist">
7 <link rel="import" type="css" href="network_apnlist.css"> 7 <link rel="import" type="css" href="network_apnlist.css">
8 <template> 8 <template>
9 <div id="outerDiv" class="layout vertical"> 9 <div id="outerDiv" class="layout vertical">
10 <div id="selectDiv" class="layout horizontal center"> 10 <div id="selectDiv" class="layout horizontal center">
11 <span>Access Point:</span> 11 <span>Access Point:</span>
12 <!-- TODO(stevenjb): Use cr-dropdown-menu once available. --> 12 <!-- TODO(stevenjb): Use cr-dropdown-menu once available. -->
13 <select id="selectApn" value="{{selectedApn::change}}" 13 <select id="selectApn" value="{{selectedApn::change}}"
(...skipping 10 matching lines...) Expand all
24 fields="[[otherApnFields_]]" network-state="[[otherApn]]" 24 fields="[[otherApnFields_]]" network-state="[[otherApn]]"
25 edit-field-types="[[otherApnEditTypes_]]" 25 edit-field-types="[[otherApnEditTypes_]]"
26 on-property-change="onOtherApnChange_"> 26 on-property-change="onOtherApnChange_">
27 </network-property-list> 27 </network-property-list>
28 <cr-button on-click="onSaveOther_">Save</cr-button> 28 <cr-button on-click="onSaveOther_">Save</cr-button>
29 </div> 29 </div>
30 </div> 30 </div>
31 </template> 31 </template>
32 <script src="network_apnlist.js"></script> 32 <script src="network_apnlist.js"></script>
33 </dom-module> 33 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698