blob: b7b48c918f70dfabce32f7debd39c50f69fdfb1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
// Copyright (c) 2010 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
//
// PersonalOptions class
// Encapsulated handling of personal options page.
//
function PersonalOptions() {
OptionsPage.call(this, 'personal', templateData.personalPage, 'personalPage');
}
cr.addSingletonGetter(PersonalOptions);
PersonalOptions.prototype = {
// Inherit PersonalOptions from OptionsPage.
__proto__: OptionsPage.prototype,
// Initialize PersonalOptions page.
initializePage: function() {
// Call base class implementation to starts preference initialization.
OptionsPage.prototype.initializePage.call(this);
// TODO(csilv): add any needed initialization here or delete this method.
}
};
|