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

Unified Diff: chrome/browser/resources/options2/personal_options_profile_list.js

Issue 9181013: [uber page] Migrate remaining Personal options into Browser options. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: kill, kill, kill! Created 8 years, 11 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/options2/personal_options_profile_list.js
===================================================================
--- chrome/browser/resources/options2/personal_options_profile_list.js (revision 117054)
+++ chrome/browser/resources/options2/personal_options_profile_list.js (working copy)
@@ -1,105 +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.personal_options', function() {
- const DeletableItem = options.DeletableItem;
- const DeletableItemList = options.DeletableItemList;
- const ListSingleSelectionModel = cr.ui.ListSingleSelectionModel;
-
- var localStrings = new LocalStrings();
-
- /**
- * Creates a new profile list item.
- * @param {Object} profileInfo The profile this item respresents.
- * @constructor
- * @extends {cr.ui.DeletableItem}
- */
- function ProfileListItem(profileInfo) {
- var el = cr.doc.createElement('div');
- el.profileInfo_ = profileInfo;
- ProfileListItem.decorate(el);
- return el;
- }
-
- /**
- * Decorates an element as a profile list item.
- * @param {!HTMLElement} el The element to decorate.
- */
- ProfileListItem.decorate = function(el) {
- el.__proto__ = ProfileListItem.prototype;
- el.decorate();
- };
-
- ProfileListItem.prototype = {
- __proto__: DeletableItem.prototype,
-
- /**
- * Get the filepath for this profile list item.
- * @return the file path of this item.
- */
- get profilePath() {
- return this.profileInfo_.filePath;
- },
-
- /** @inheritDoc */
- decorate: function() {
- DeletableItem.prototype.decorate.call(this);
-
- var profileInfo = this.profileInfo_;
-
- var iconEl = this.ownerDocument.createElement('img');
- iconEl.className = 'profile-img';
- iconEl.src = profileInfo.iconURL;
- this.contentElement.appendChild(iconEl);
-
- var nameEl = this.ownerDocument.createElement('div');
- if (profileInfo.isCurrentProfile)
- nameEl.classList.add('profile-item-current');
- this.contentElement.appendChild(nameEl);
-
- var displayName = profileInfo.name;
- if (profileInfo.isCurrentProfile)
- displayName = localStrings.getStringF(
- 'profilesListItemCurrent',
- profileInfo.name)
- nameEl.textContent = displayName;
- },
- };
-
- var ProfileList = cr.ui.define('list');
-
- ProfileList.prototype = {
- __proto__: DeletableItemList.prototype,
-
- /** @inheritDoc */
- decorate: function() {
- DeletableItemList.prototype.decorate.call(this);
- this.selectionModel = new ListSingleSelectionModel();
- },
-
- /** @inheritDoc */
- createItem: function(pageInfo) {
- var item = new ProfileListItem(pageInfo);
- return item;
- },
-
- /** @inheritDoc */
- deleteItemAtIndex: function(index) {
- ManageProfileOverlay.showDeleteDialog(this.dataModel.item(index));
- },
-
- /** @inheritDoc */
- activateItemAtIndex: function(index) {
- // Don't allow the user to edit a profile that is not current.
- var profileInfo = this.dataModel.item(index);
- if (profileInfo.isCurrentProfile)
- ManageProfileOverlay.showManageDialog(profileInfo);
- },
- };
-
- return {
- ProfileList: ProfileList
- };
-});
-

Powered by Google App Engine
This is Rietveld 408576698