OLD | NEW |
1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 cr.define('options', function() { | 5 cr.define('options', function() { |
6 | 6 |
7 ////////////////////////////////////////////////////////////////////////////// | 7 ////////////////////////////////////////////////////////////////////////////// |
8 // ContentSettingsRadio class: | 8 // ContentSettingsRadio class: |
9 | 9 |
10 // Define a constructor that uses an input element as its underlying element. | 10 // Define a constructor that uses an input element as its underlying element. |
(...skipping 16 matching lines...) Expand all Loading... |
27 }, | 27 }, |
28 }; | 28 }; |
29 | 29 |
30 // Export | 30 // Export |
31 return { | 31 return { |
32 ContentSettingsRadio: ContentSettingsRadio | 32 ContentSettingsRadio: ContentSettingsRadio |
33 }; | 33 }; |
34 | 34 |
35 }); | 35 }); |
36 | 36 |
OLD | NEW |