OLD | NEW |
(Empty) | |
| 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 |
| 3 // found in the LICENSE file. |
| 4 |
| 5 cr.define('options', function() { |
| 6 |
| 7 var OptionsPage = options.OptionsPage; |
| 8 |
| 9 ///////////////////////////////////////////////////////////////////////////// |
| 10 // PasswordsExceptions class: |
| 11 |
| 12 /** |
| 13 * Encapsulated handling of password and exceptions page. |
| 14 * @constructor |
| 15 */ |
| 16 function PasswordsExceptions() { |
| 17 OptionsPage.call(this, 'passwordsExceptions', |
| 18 templateData.passwordsExceptionsTitle, |
| 19 'passwordsExceptionsPage'); |
| 20 } |
| 21 |
| 22 cr.addSingletonGetter(PasswordsExceptions); |
| 23 |
| 24 PasswordsExceptions.prototype = { |
| 25 __proto__: OptionsPage.prototype, |
| 26 |
| 27 initializePage: function() { |
| 28 OptionsPage.prototype.initializePage.call(this); |
| 29 |
| 30 // TODO(sargrass): Add initialization here. |
| 31 } |
| 32 }; |
| 33 |
| 34 // Export |
| 35 return { |
| 36 PasswordsExceptions: PasswordsExceptions |
| 37 }; |
| 38 |
| 39 }); |
| 40 |
OLD | NEW |