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 // TODO(jhawkins): Add dialog-pref support to all preference controls. | 5 // TODO(jhawkins): Add dialog-pref support to all preference controls. |
6 | 6 |
7 cr.define('options', function() { | 7 cr.define('options', function() { |
8 | 8 |
9 var Preferences = options.Preferences; | 9 var Preferences = options.Preferences; |
10 | 10 |
(...skipping 826 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
837 PrefNumber: PrefNumber, | 837 PrefNumber: PrefNumber, |
838 PrefNumeric: PrefNumeric, | 838 PrefNumeric: PrefNumeric, |
839 PrefRadio: PrefRadio, | 839 PrefRadio: PrefRadio, |
840 PrefRange: PrefRange, | 840 PrefRange: PrefRange, |
841 PrefSelect: PrefSelect, | 841 PrefSelect: PrefSelect, |
842 PrefTextField: PrefTextField, | 842 PrefTextField: PrefTextField, |
843 PrefButton: PrefButton | 843 PrefButton: PrefButton |
844 }; | 844 }; |
845 | 845 |
846 }); | 846 }); |
OLD | NEW |