| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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.internet', function() { | 5 cr.define('options.internet', function() { |
| 6 /** | 6 /** |
| 7 * Creates a new network list div. | 7 * Creates a new network list div. |
| 8 * @param {Object=} opt_propertyBag Optional properties. | 8 * @param {Object=} opt_propertyBag Optional properties. |
| 9 * @constructor | 9 * @constructor |
| 10 * @extends {HTMLDivElement} | 10 * @extends {HTMLDivElement} |
| (...skipping 112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 123 row.appendChild(col2); | 123 row.appendChild(col2); |
| 124 } | 124 } |
| 125 table.appendChild(row); | 125 table.appendChild(row); |
| 126 } | 126 } |
| 127 }; | 127 }; |
| 128 | 128 |
| 129 return { | 129 return { |
| 130 CellularPlanElement: CellularPlanElement | 130 CellularPlanElement: CellularPlanElement |
| 131 }; | 131 }; |
| 132 }); | 132 }); |
| OLD | NEW |