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

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

Issue 2848443002: MD Settings: Remove usage of deprecated iron-flex-layout.html, for CrOS. (Closed)
Patch Set: Fix more 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/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/icons.html"> 2 <link rel="import" href="chrome://resources/cr_elements/icons.html">
3 <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">
4 <link rel="import" href="chrome://resources/html/i18n_behavior.html"> 4 <link rel="import" href="chrome://resources/html/i18n_behavior.html">
5 <link rel="import" href="chrome://resources/html/polymer.html"> 5 <link rel="import" href="chrome://resources/html/polymer.html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/iron-icon/iron-icon.htm l">
7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/neon-animation/neon-ani matable.html">
8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html"> 8 <link rel="import" href="chrome://resources/polymer/v1_0/paper-icon-button/paper -icon-button-light.html">
9 <link rel="import" href="../prefs/prefs.html"> 9 <link rel="import" href="../prefs/prefs.html">
10 <link rel="import" href="../route.html"> 10 <link rel="import" href="../route.html">
(...skipping 16 matching lines...) Expand all
27 -webkit-margin-end: 12px; 27 -webkit-margin-end: 12px;
28 -webkit-margin-start: 4px; 28 -webkit-margin-start: 4px;
29 height: 24px; 29 height: 24px;
30 width: 24px; 30 width: 24px;
31 } 31 }
32 </style> 32 </style>
33 <settings-animated-pages id="pages" section="internet" 33 <settings-animated-pages id="pages" section="internet"
34 focus-config="[[focusConfig_]]"> 34 focus-config="[[focusConfig_]]">
35 <neon-animatable route-path="default"> 35 <neon-animatable route-path="default">
36 <network-summary default-network="{{defaultNetwork}}" 36 <network-summary default-network="{{defaultNetwork}}"
37 device-states="{{deviceStates}}" 37 device-states="{{deviceStates}}"
38 networking-private="[[networkingPrivate]]"> 38 networking-private="[[networkingPrivate]]">
39 </network-summary> 39 </network-summary>
40 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]"> 40 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]">
41 <div actionable class="settings-box two-line" 41 <div actionable class="settings-box two-line"
42 on-tap="onExpandAddConnectionsTap_"> 42 on-tap="onExpandAddConnectionsTap_">
43 <div class="start layout horizontal center"> 43 <div class="start layout horizontal center">
44 <div>$i18n{internetAddConnection}</div> 44 <div>$i18n{internetAddConnection}</div>
45 </div> 45 </div>
46 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}" 46 <cr-expand-button alt="$i18n{internetAddConnectionExpandA11yLabel}"
47 id="expandAddConnections" expanded="{{addConnectionExpanded_}}"> 47 id="expandAddConnections" expanded="{{addConnectionExpanded_}}">
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 networking-private="[[networkingPrivate]]" 112 networking-private="[[networkingPrivate]]"
113 show-spinner="{{showSpinner_}}"> 113 show-spinner="{{showSpinner_}}">
114 </settings-bluetooth-subpage> 114 </settings-bluetooth-subpage>
115 </settings-subpage> 115 </settings-subpage>
116 </template> 116 </template>
117 117
118 </settings-animated-pages> 118 </settings-animated-pages>
119 </template> 119 </template>
120 <script src="internet_page.js"></script> 120 <script src="internet_page.js"></script>
121 </dom-module> 121 </dom-module>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698