| 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 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 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 218 AboutPage.changeToRestartButton = function() { | 218 AboutPage.changeToRestartButton = function() { |
| 219 AboutPage.getInstance().changeToRestartButton_(); | 219 AboutPage.getInstance().changeToRestartButton_(); |
| 220 }; | 220 }; |
| 221 | 221 |
| 222 // Export | 222 // Export |
| 223 return { | 223 return { |
| 224 AboutPage: AboutPage | 224 AboutPage: AboutPage |
| 225 }; | 225 }; |
| 226 | 226 |
| 227 }); | 227 }); |
| OLD | NEW |