// 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-basic-page' is the settings page containing the basic settings. * * Example: * * * * ... other pages ... * * * @group Chrome Settings Elements * @element settings-basic-page */ Polymer({ is: 'settings-basic-page', properties: { /** * Preferences state. */ prefs: { type: Object, notify: true, }, /** * The current active route. */ currentRoute: { type: Object, notify: true, }, /** * True if the basic page should currently display the reset profile banner. * @private {boolean} */ showResetProfileBanner_: { type: Boolean, value: function() { return loadTimeData.getBoolean('showResetProfileBanner'); }, }, }, behaviors: [I18nBehavior, SettingsPageVisibility], onResetDone_: function() { this.showResetProfileBanner_ = false; }, });