| Index: ui/webui/resources/js/cr/ui/command.js
 | 
| diff --git a/ui/webui/resources/js/cr/ui/command.js b/ui/webui/resources/js/cr/ui/command.js
 | 
| index 3f857aff09a39264540c339a1f1273ffe84eda73..783bba571da75e69c0b02d29eee20e4b4ba64ede 100644
 | 
| --- a/ui/webui/resources/js/cr/ui/command.js
 | 
| +++ b/ui/webui/resources/js/cr/ui/command.js
 | 
| @@ -129,7 +129,9 @@ cr.define('cr.ui', function() {
 | 
|       * @type {string}
 | 
|       */
 | 
|      shortcut_: '',
 | 
| -    get shortcut() { return this.shortcut_; },
 | 
| +    get shortcut() {
 | 
| +      return this.shortcut_;
 | 
| +    },
 | 
|      set shortcut(shortcut) {
 | 
|        var oldShortcut = this.shortcut_;
 | 
|        if (shortcut !== oldShortcut) {
 | 
| @@ -310,7 +312,9 @@ cr.define('cr.ui', function() {
 | 
|       * @type {boolean}
 | 
|       */
 | 
|      canExecute_: false,
 | 
| -    get canExecute() { return this.canExecute_; },
 | 
| +    get canExecute() {
 | 
| +      return this.canExecute_;
 | 
| +    },
 | 
|      set canExecute(canExecute) {
 | 
|        this.canExecute_ = !!canExecute;
 | 
|        this.stopPropagation();
 | 
| 
 |