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 <include src="extension_error.js"></include> | 5 <include src="extension_error.js"> |
6 | 6 |
7 cr.define('options', function() { | 7 cr.define('options', function() { |
8 'use strict'; | 8 'use strict'; |
9 | 9 |
10 /** | 10 /** |
11 * Creates a new list of extensions. | 11 * Creates a new list of extensions. |
12 * @param {Object=} opt_propertyBag Optional properties. | 12 * @param {Object=} opt_propertyBag Optional properties. |
13 * @constructor | 13 * @constructor |
14 * @extends {cr.ui.div} | 14 * @extends {cr.ui.div} |
15 */ | 15 */ |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
404 topScroll -= pad / 2; | 404 topScroll -= pad / 2; |
405 setScrollTopForDocument(document, topScroll); | 405 setScrollTopForDocument(document, topScroll); |
406 } | 406 } |
407 }, | 407 }, |
408 }; | 408 }; |
409 | 409 |
410 return { | 410 return { |
411 ExtensionsList: ExtensionsList | 411 ExtensionsList: ExtensionsList |
412 }; | 412 }; |
413 }); | 413 }); |
OLD | NEW |