| 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', function() { | 5 cr.define('options', function() { |
| 6 const OptionsPage = options.OptionsPage; | 6 const OptionsPage = options.OptionsPage; |
| 7 | 7 |
| 8 /** | 8 /** |
| 9 * The number of milliseconds used for showing a message. | 9 * The number of milliseconds used for showing a message. |
| 10 * @type {number} | 10 * @type {number} |
| (...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 211 AboutPage.changeToRestartButton = function() { | 211 AboutPage.changeToRestartButton = function() { |
| 212 AboutPage.getInstance().changeToRestartButton_(); | 212 AboutPage.getInstance().changeToRestartButton_(); |
| 213 }; | 213 }; |
| 214 | 214 |
| 215 // Export | 215 // Export |
| 216 return { | 216 return { |
| 217 AboutPage: AboutPage | 217 AboutPage: AboutPage |
| 218 }; | 218 }; |
| 219 | 219 |
| 220 }); | 220 }); |
| OLD | NEW |