Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Side by Side Diff: chrome/browser/resources/options/personal_options.js

Issue 2830036: Advanced (Under the Hood) options panel code review (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/resources/options/personal_options.html ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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 //
6 // PersonalOptions class
7 // Encapsulated handling of personal options page.
8 //
9 function PersonalOptions(model) {
10 OptionsPage.call(this, 'personal', templateData.personalPage, 'personalPage');
11 }
12
13 PersonalOptions.getInstance = function() {
14 if (!PersonalOptions.instance_) {
15 PersonalOptions.instance_ = new PersonalOptions(null);
16 }
17 return PersonalOptions.instance_;
18 }
19
20 PersonalOptions.prototype = {
21 // Inherit PersonalOptions from OptionsPage.
22 __proto__: OptionsPage.prototype,
23
24 // Initialize PersonalOptions page.
25 initializePage: function() {
26 // Call base class implementation to starts preference initialization.
27 OptionsPage.prototype.initializePage.call(this);
28
29 // TODO(csilv): add any needed initialization here or delete this method.
30 },
31 };
32
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/personal_options.html ('k') | chrome/chrome_browser.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698