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

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

Issue 2889333002: [MD settings] move polymer.html imports to top of file (Closed)
Patch Set: rerun Created 3 years, 7 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/html/polymer.html">
2
1 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l"> 3 <link rel="import" href="chrome://resources/cr_elements/network/cr_onc_types.htm l">
2 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html"> 4 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _behavior.html">
3 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html"> 5 <link rel="import" href="chrome://resources/cr_elements/policy/cr_policy_network _indicator.html">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 6 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/polymer.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input -container.html">
7 <link rel="import" href="internet_shared_css.html"> 8 <link rel="import" href="internet_shared_css.html">
8 9
9 <dom-module id="network-property-list"> 10 <dom-module id="network-property-list">
10 <template> 11 <template>
11 <style include="internet-shared"> 12 <style include="internet-shared">
12 paper-input-container { 13 paper-input-container {
13 margin-bottom: -12px; 14 margin-bottom: -12px;
14 margin-top: -8px; 15 margin-top: -8px;
15 } 16 }
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
59 value="[[getPropertyValue_(item, prefix, propertyDict)]]" 60 value="[[getPropertyValue_(item, prefix, propertyDict)]]"
60 on-change="onValueChange_"> 61 on-change="onValueChange_">
61 </paper-input-container> 62 </paper-input-container>
62 </template> 63 </template>
63 <!-- TODO(stevenjb): Support other types. --> 64 <!-- TODO(stevenjb): Support other types. -->
64 </div> 65 </div>
65 </template> 66 </template>
66 </template> 67 </template>
67 <script src="network_property_list.js"></script> 68 <script src="network_property_list.js"></script>
68 </dom-module> 69 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698