Commit 2e54ad80 authored by Denis Kuznetsov's avatar Denis Kuznetsov Committed by Commit Bot

Use proper Polymer properties syntax.

Bug: 893934,955194
Change-Id: Ie97de2f2034f2169c5c473a55c7a88388e6ae725
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/1872056Reviewed-by: default avatarRoman Sorokin [CET] <rsorokin@chromium.org>
Commit-Queue: Denis Kuznetsov [CET] <antrim@chromium.org>
Cr-Commit-Position: refs/heads/master@{#712631}
parent 4c5f2bdb
...@@ -21,21 +21,30 @@ Polymer({ ...@@ -21,21 +21,30 @@ Polymer({
* setup. * setup.
* @type {boolean} * @type {boolean}
*/ */
isDemoModeSetup: false, isDemoModeSetup: {
type: Boolean,
value: false,
},
/** /**
* Whether offline demo mode is enabled. If it is enabled offline setup * Whether offline demo mode is enabled. If it is enabled offline setup
* option will be shown in UI. * option will be shown in UI.
* @type {boolean} * @type {boolean}
*/ */
offlineDemoModeEnabled: false, offlineDemoModeEnabled: {
type: Boolean,
value: false,
},
/** /**
* Whether device is connected to the network. * Whether device is connected to the network.
* @type {boolean} * @type {boolean}
* @private * @private
*/ */
isConnected_: false, isConnected_: {
type: Boolean,
value: false,
},
}, },
/** Called when dialog is shown. */ /** Called when dialog is shown. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment