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

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

Issue 1406023003: Elim cr_elements/v1_0 subdirectory (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 years, 2 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/network/cr_onc_type s.html"> 2 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 3 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
4 4
5 <dom-module name="network-property-list"> 5 <dom-module name="network-property-list">
6 <link rel="import" type="css" href="network_property_list.css"> 6 <link rel="import" type="css" href="network_property_list.css">
7 <template> 7 <template>
8 <div id="outerDiv" class="layout horizontal"> 8 <div id="outerDiv" class="layout horizontal">
9 <div class="layout vertical"> 9 <div class="layout vertical">
10 <template is="dom-repeat" items="[[fields]]"> 10 <template is="dom-repeat" items="[[fields]]">
11 <div class="layout horizontal" 11 <div class="layout horizontal"
12 hidden$="[[!showProperty_(propertyDict, editFieldTypes, item)]]"> 12 hidden$="[[!showProperty_(propertyDict, editFieldTypes, item)]]">
(...skipping 16 matching lines...) Expand all
29 on-blur="onValueChange_"> 29 on-blur="onValueChange_">
30 </paper-input-container> 30 </paper-input-container>
31 </div> 31 </div>
32 <!-- TODO(stevenjb): Support non-string types. --> 32 <!-- TODO(stevenjb): Support non-string types. -->
33 </template> 33 </template>
34 </div> 34 </div>
35 </div> 35 </div>
36 </template> 36 </template>
37 <script src="network_property_list.js"></script> 37 <script src="network_property_list.js"></script>
38 </dom-module> 38 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698