blob: 09d58992bd1963141f8aae3064d8e2d4e4176a9d [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
Polymer({
is: 'settings-smb-shares-page',
properties: {
/** @private */
showAddSmbDialog_: Boolean,
},
/** @private */
onAddShareTap_: function() {
this.showAddSmbDialog_ = true;
},
/** @private */
onAddSmbDialogClosed_: function() {
this.showAddSmbDialog_ = false;
},
});