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

Unified Diff: chrome/browser/resources/options/chromeos/internet_detail_ip_config_list.js

Issue 9814030: get rid of old options pages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: more fixes Created 8 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/options/chromeos/internet_detail_ip_config_list.js
diff --git a/chrome/browser/resources/options/chromeos/internet_detail_ip_config_list.js b/chrome/browser/resources/options/chromeos/internet_detail_ip_config_list.js
deleted file mode 100644
index fe4cb9eab4a94a3bb8759d5989955aaf8cbcf171..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/options/chromeos/internet_detail_ip_config_list.js
+++ /dev/null
@@ -1,99 +0,0 @@
-// Copyright (c) 2011 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.
-
-cr.define('options.internet', function() {
- const InlineEditableItem = options.InlineEditableItem;
- const InlineEditableItemList = options.InlineEditableItemList;
-
- /**
- * Creates a new ip config list item.
- * @param {Object} fieldInfo The ip config field this item represents.
- * @constructor
- * @extends {cr.ui.ListItem}
- */
- function IPConfigListItem(fieldInfo) {
- var el = cr.doc.createElement('div');
- el.fieldInfo_ = fieldInfo;
- IPConfigListItem.decorate(el);
- return el;
- }
-
- /**
- * Decorates an element as a ip config list item.
- * @param {!HTMLElement} el The element to decorate.
- */
- IPConfigListItem.decorate = function(el) {
- el.__proto__ = IPConfigListItem.prototype;
- el.decorate();
- };
-
- IPConfigListItem.prototype = {
- __proto__: InlineEditableItem.prototype,
-
- /**
- * Input field for editing the ip config values.
- * @type {HTMLElement}
- * @private
- */
- valueField_: null,
-
- /** @inheritDoc */
- decorate: function() {
- InlineEditableItem.prototype.decorate.call(this);
- this.deletable = false;
-
- var fieldInfo = this.fieldInfo_;
-
- var nameEl = this.ownerDocument.createElement('div');
- nameEl.className = 'name';
- nameEl.textContent = fieldInfo['name'];
-
- this.contentElement.appendChild(nameEl);
-
- var valueEl = this.createEditableTextCell(fieldInfo['value']);
- valueEl.className = 'value';
- this.contentElement.appendChild(valueEl);
-
- var valueField = valueEl.querySelector('input')
- valueField.required = true;
- this.valueField_ = valueField;
-
- this.addEventListener('commitedit', this.onEditCommitted_);
- },
-
- /** @inheritDoc */
- get currentInputIsValid() {
- return this.valueField_.validity.valid;
- },
-
- /** @inheritDoc */
- get hasBeenEdited() {
- return this.valueField_.value != this.fieldInfo_['value'];
- },
-
- /**
- * Called when committing an edit; updates the model.
- * @param {Event} e The end event.
- * @private
- */
- onEditCommitted_: function(e) {
- this.fieldInfo_['value'] = this.valueField_.value;
- },
- };
-
- var IPConfigList = cr.ui.define('list');
-
- IPConfigList.prototype = {
- __proto__: InlineEditableItemList.prototype,
-
- /** @inheritDoc */
- createItem: function(fieldInfo) {
- return new IPConfigListItem(fieldInfo);
- },
- };
-
- return {
- IPConfigList: IPConfigList
- };
-});

Powered by Google App Engine
This is Rietveld 408576698