Home | History | Annotate | Download | only in js

Lines Matching refs:cr

9  * @param {cr.ui.ArrayDataModel} volumesList The first list of the model.
10 * @param {cr.ui.ArrayDataModel} pinnedList The second list of the model.
12 * @extends {cr.EventTarget}
65 * NavigationList inherits cr.EventTarget.
68 __proto__: cr.EventTarget.prototype,
117 var NavigationListItem = cr.ui.define('li');
135 this.iconDiv_ = cr.doc.createElement('div');
139 this.label_ = cr.doc.createElement('div');
143 cr.defineProperty(this, 'lead', cr.PropertyKind.BOOL_ATTR);
144 cr.defineProperty(this, 'selected', cr.PropertyKind.BOOL_ATTR);
168 this.eject_ = cr.doc.createElement('div');
178 cr.dispatchSimpleEvent(this, 'eject');
187 * @param {cr.ui.Menu} menu Menu this item.
203 cr.ui.contextMenuHandler.setContextMenu(this, menu);
209 * @extends {cr.ui.List}
215 * NavigationList inherits cr.ui.List.
218 __proto__: cr.ui.List.prototype,
232 var parentSetter = cr.ui.List.prototype.__lookupSetter__('dataModel');
257 cr.ui.List.decorate(this);
263 this.selectionModel = new cr.ui.ListSingleSelectionModel();
275 // Overriding default role 'list' set by cr.ui.List.decorate() to 'listbox'
287 * cr.ui.List internally.
303 var unmountCommand = cr.doc.querySelector('command#unmount');
338 * @param {cr.ui.Menu} menu Context menu.