Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(341)

Unified Diff: chrome/browser/resources/settings/controls/settings_input.js

Issue 2773233002: MD Settings: change settings-input to home-url-input due to reduced usage. (Closed)
Patch Set: updates based on comments Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/settings/controls/settings_input.js
diff --git a/chrome/browser/resources/settings/controls/settings_input.js b/chrome/browser/resources/settings/controls/settings_input.js
deleted file mode 100644
index 0031a07e242dfa2b87d8bc63595c1096e5a00f19..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/settings/controls/settings_input.js
+++ /dev/null
@@ -1,129 +0,0 @@
-// 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-input` is a single-line text field for user input associated
- * with a pref value.
- */
-Polymer({
- is: 'settings-input',
-
- behaviors: [CrPolicyPrefBehavior, PrefControlBehavior],
-
- properties: {
- /**
- * The preference object to control.
- * @type {!chrome.settingsPrivate.PrefObject|undefined}
- * @override
- */
- pref: {observer: 'prefChanged_'},
-
- /* The current value of the input, reflected to/from |pref|. */
- value: {
- type: String,
- value: '',
- notify: true,
- },
-
- /* Set to true to disable editing the input. */
- disabled: {type: Boolean, value: false, reflectToAttribute: true},
-
- canTab: Boolean,
-
- invalid: {
- type: Boolean,
- value: false,
- notify: true,
- },
-
- /* Properties for paper-input. This is not strictly necessary.
- * Though it does define the types for the closure compiler. */
- errorMessage: {type: String},
- label: {type: String},
- },
-
- /**
- * Focuses the 'input' element.
- */
- focus: function() {
- this.$.input.focus();
- },
-
- /**
- * Polymer changed observer for |pref|.
- * @private
- */
- prefChanged_: function() {
- if (!this.pref)
- return;
-
- // Ignore updates while the input is focused so that user input is not
- // overwritten.
- if (this.$.input.focused)
- return;
-
- this.setInputValueFromPref_();
- },
-
- /** @private */
- setInputValueFromPref_: function() {
- assert(this.pref.type == chrome.settingsPrivate.PrefType.URL);
- this.value = /** @type {string} */ (this.pref.value);
- },
-
- /**
- * Gets a tab index for this control if it can be tabbed to.
- * @param {boolean} canTab
- * @return {number}
- * @private
- */
- getTabindex_: function(canTab) {
- return canTab ? 0 : -1;
- },
-
- /**
- * Change event handler for paper-input. Updates the pref value.
- * settings-input uses the change event because it is fired by the Enter key.
- * @private
- */
- onChange_: function() {
- if (this.invalid) {
- this.resetValue_();
- return;
- }
-
- assert(this.pref.type == chrome.settingsPrivate.PrefType.URL);
- this.set('pref.value', this.value);
- },
-
- /** @private */
- resetValue_: function() {
- this.invalid = false;
- this.setInputValueFromPref_();
- this.$.input.blur();
- },
-
- /**
- * Keydown handler to specify enter-key and escape-key interactions.
- * @param {!Event} event
- * @private
- */
- onKeydown_: function(event) {
- // If pressed enter when input is invalid, do not trigger on-change.
- if (event.key == 'Enter' && this.invalid)
- event.preventDefault();
- else if (event.key == 'Escape')
- this.resetValue_();
- },
-
- /**
- * @param {boolean} disabled
- * @return {boolean} Whether the element should be disabled.
- * @private
- */
- isDisabled_: function(disabled) {
- return disabled || this.isPrefEnforced();
- },
-});

Powered by Google App Engine
This is Rietveld 408576698