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

Unified Diff: chrome/browser/resources/shared/js/cr/ui/menu_item.js

Issue 3517004: Revert 60997 - o Add user customizable launch type for apps by adding options... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 3 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
« no previous file with comments | « chrome/browser/resources/shared/js/cr/ui/command.js ('k') | tools/grit/grit/format/html_inline.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/shared/js/cr/ui/menu_item.js
===================================================================
--- chrome/browser/resources/shared/js/cr/ui/menu_item.js (revision 60999)
+++ chrome/browser/resources/shared/js/cr/ui/menu_item.js (working copy)
@@ -52,7 +52,6 @@
this.command_.removeEventListener('labelChange', this);
this.command_.removeEventListener('disabledChange', this);
this.command_.removeEventListener('hiddenChange', this);
- this.command_.removeEventListener('checkedChange', this);
}
if (typeof command == 'string' && command[0] == '#') {
@@ -72,7 +71,6 @@
this.command_.addEventListener('labelChange', this);
this.command_.addEventListener('disabledChange', this);
this.command_.addEventListener('hiddenChange', this);
- this.command_.addEventListener('checkedChange', this);
}
},
@@ -126,9 +124,6 @@
case 'labelChange':
this.label = this.command.label;
break;
- case 'checkedChange':
- this.checked = this.command.checked;
- break;
}
}
};
@@ -151,12 +146,6 @@
*/
cr.defineProperty(MenuItem, 'selected', cr.PropertyKind.BOOL_ATTR);
- /**
- * Whether the menu item is checked or not.
- * @type {boolean}
- */
- cr.defineProperty(MenuItem, 'checked', cr.PropertyKind.BOOL_ATTR);
-
// Export
return {
MenuItem: MenuItem
« no previous file with comments | « chrome/browser/resources/shared/js/cr/ui/command.js ('k') | tools/grit/grit/format/html_inline.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698