OLD | NEW |
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 12 matching lines...) Expand all Loading... |
23 -webkit-margin-start: 36px | 23 -webkit-margin-start: 36px |
24 } | 24 } |
25 | 25 |
26 iron-icon { | 26 iron-icon { |
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 <neon-animatable route-path="default"> | 35 <neon-animatable route-path="default"> |
35 <network-summary default-network="{{defaultNetwork}}" | 36 <network-summary default-network="{{defaultNetwork}}" |
36 device-states="{{deviceStates}}" | 37 device-states="{{deviceStates}}" |
37 networking-private="[[networkingPrivate]]"> | 38 networking-private="[[networkingPrivate]]"> |
38 </network-summary> | 39 </network-summary> |
39 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]"> | 40 <template is="dom-if" if="[[allowAddConnection_(globalPolicy_)]]"> |
40 <div actionable class="settings-box two-line" | 41 <div actionable class="settings-box two-line" |
41 on-tap="onExpandAddConnectionsTap_"> | 42 on-tap="onExpandAddConnectionsTap_"> |
42 <div class="start layout horizontal center"> | 43 <div class="start layout horizontal center"> |
43 <div>$i18n{internetAddConnection}</div> | 44 <div>$i18n{internetAddConnection}</div> |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
111 networking-private="[[networkingPrivate]]" | 112 networking-private="[[networkingPrivate]]" |
112 show-spinner="{{showSpinner_}}"> | 113 show-spinner="{{showSpinner_}}"> |
113 </settings-bluetooth-subpage> | 114 </settings-bluetooth-subpage> |
114 </settings-subpage> | 115 </settings-subpage> |
115 </template> | 116 </template> |
116 | 117 |
117 </settings-animated-pages> | 118 </settings-animated-pages> |
118 </template> | 119 </template> |
119 <script src="internet_page.js"></script> | 120 <script src="internet_page.js"></script> |
120 </dom-module> | 121 </dom-module> |
OLD | NEW |