| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 /** | 50 /** |
| 51 * Dictionary defining page visibility. | 51 * Dictionary defining page visibility. |
| 52 * This is only set when in guest mode. All pages are visible when not set | 52 * This is only set when in guest mode. All pages are visible when not set |
| 53 * because polymer only notifies after a property is set. | 53 * because polymer only notifies after a property is set. |
| 54 * @private {!GuestModePageVisibility} | 54 * @private {!GuestModePageVisibility} |
| 55 */ | 55 */ |
| 56 pageVisibility_: Object, | 56 pageVisibility_: Object, |
| 57 | 57 |
| 58 /** @private */ | 58 /** @private */ |
| 59 shouldHideContainer_: Boolean, |
| 60 |
| 61 /** @private */ |
| 59 showAndroidApps_: Boolean, | 62 showAndroidApps_: Boolean, |
| 60 | 63 |
| 61 /** @private */ | 64 /** @private */ |
| 62 lastSearchQuery_: { | 65 lastSearchQuery_: { |
| 63 type: String, | 66 type: String, |
| 64 value: '', | 67 value: '', |
| 65 } | 68 } |
| 66 }, | 69 }, |
| 67 | 70 |
| 68 listeners: { | 71 listeners: { |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 275 this.$.container.removeAttribute('tabindex'); | 278 this.$.container.removeAttribute('tabindex'); |
| 276 }.bind(this)); | 279 }.bind(this)); |
| 277 }, | 280 }, |
| 278 | 281 |
| 279 /** @private */ | 282 /** @private */ |
| 280 directionDelegateChanged_: function() { | 283 directionDelegateChanged_: function() { |
| 281 this.$.drawer.align = this.directionDelegate.isRtl() ? | 284 this.$.drawer.align = this.directionDelegate.isRtl() ? |
| 282 'right' : 'left'; | 285 'right' : 'left'; |
| 283 }, | 286 }, |
| 284 }); | 287 }); |
| OLD | NEW |