| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 /** | 5 /** |
| 6 * @fileoverview | 6 * @fileoverview |
| 7 * 'settings-ui' implements the UI for the Settings page. | 7 * 'settings-ui' implements the UI for the Settings page. |
| 8 * | 8 * |
| 9 * Example: | 9 * Example: |
| 10 * | 10 * |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 105 // </if> | 105 // </if> |
| 106 }; | 106 }; |
| 107 | 107 |
| 108 // <if expr="chromeos"> | 108 // <if expr="chromeos"> |
| 109 CrOncStrings = { | 109 CrOncStrings = { |
| 110 OncTypeCellular: loadTimeData.getString('OncTypeCellular'), | 110 OncTypeCellular: loadTimeData.getString('OncTypeCellular'), |
| 111 OncTypeEthernet: loadTimeData.getString('OncTypeEthernet'), | 111 OncTypeEthernet: loadTimeData.getString('OncTypeEthernet'), |
| 112 OncTypeVPN: loadTimeData.getString('OncTypeVPN'), | 112 OncTypeVPN: loadTimeData.getString('OncTypeVPN'), |
| 113 OncTypeWiFi: loadTimeData.getString('OncTypeWiFi'), | 113 OncTypeWiFi: loadTimeData.getString('OncTypeWiFi'), |
| 114 OncTypeWiMAX: loadTimeData.getString('OncTypeWiMAX'), | 114 OncTypeWiMAX: loadTimeData.getString('OncTypeWiMAX'), |
| 115 networkDisabled: loadTimeData.getString('networkDisabled'), | |
| 116 networkListItemConnected: | 115 networkListItemConnected: |
| 117 loadTimeData.getString('networkListItemConnected'), | 116 loadTimeData.getString('networkListItemConnected'), |
| 118 networkListItemConnecting: | 117 networkListItemConnecting: |
| 119 loadTimeData.getString('networkListItemConnecting'), | 118 loadTimeData.getString('networkListItemConnecting'), |
| 120 networkListItemConnectingTo: | 119 networkListItemConnectingTo: |
| 121 loadTimeData.getString('networkListItemConnectingTo'), | 120 loadTimeData.getString('networkListItemConnectingTo'), |
| 122 networkListItemNotConnected: | 121 networkListItemNotConnected: |
| 123 loadTimeData.getString('networkListItemNotConnected'), | 122 loadTimeData.getString('networkListItemNotConnected'), |
| 124 vpnNameTemplate: loadTimeData.getString('vpnNameTemplate'), | 123 vpnNameTemplate: loadTimeData.getString('vpnNameTemplate'), |
| 125 }; | 124 }; |
| (...skipping 150 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 276 this.$.container.removeAttribute('tabindex'); | 275 this.$.container.removeAttribute('tabindex'); |
| 277 }.bind(this)); | 276 }.bind(this)); |
| 278 }, | 277 }, |
| 279 | 278 |
| 280 /** @private */ | 279 /** @private */ |
| 281 directionDelegateChanged_: function() { | 280 directionDelegateChanged_: function() { |
| 282 this.$.drawer.align = this.directionDelegate.isRtl() ? | 281 this.$.drawer.align = this.directionDelegate.isRtl() ? |
| 283 'right' : 'left'; | 282 'right' : 'left'; |
| 284 }, | 283 }, |
| 285 }); | 284 }); |
| OLD | NEW |