OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 'use strict'; | 5 'use strict'; |
6 | 6 |
7 /** | 7 /** |
8 * @fileoverview This implements a combobutton control. | 8 * @fileoverview This implements a combobutton control. |
9 */ | 9 */ |
10 | 10 |
(...skipping 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 } | 145 } |
146 }; | 146 }; |
147 | 147 |
148 cr.defineProperty(ComboButton, 'disabled', cr.PropertyKind.BOOL_ATTR); | 148 cr.defineProperty(ComboButton, 'disabled', cr.PropertyKind.BOOL_ATTR); |
149 cr.defineProperty(ComboButton, 'multiple', cr.PropertyKind.BOOL_ATTR); | 149 cr.defineProperty(ComboButton, 'multiple', cr.PropertyKind.BOOL_ATTR); |
150 | 150 |
151 return { | 151 return { |
152 ComboButton: ComboButton | 152 ComboButton: ComboButton |
153 }; | 153 }; |
154 }); | 154 }); |
OLD | NEW |