blob: f91c245f6779122c5c951e90361e2952d86a5ede [file] [log] [blame]
// Copyright 2015 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.
/**
* @fileoverview
* 'settings-reset-page' is the settings page containing reset
* settings.
*/
Polymer({
is: 'settings-powerwash-dialog',
open: function() {
chrome.send('onPowerwashDialogShow');
this.$.dialog.open();
},
/** @private */
onCancelTap_: function() {
this.$.dialog.close();
},
/** @private */
onRestartTap_: function() {
chrome.send('requestFactoryResetRestart');
},
});