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

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

Issue 3044047: DOMUI: Base framework for the AutoFill page. (Closed)
Patch Set: Fix missing handler. Created 10 years, 4 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
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 cr.define('options', function() {
6
7 var OptionsPage = options.OptionsPage;
8
9 /////////////////////////////////////////////////////////////////////////////
10 // AutoFillOptions class:
11
12 /**
13 * Encapsulated handling of AutoFill options page.
14 * @constructor
15 */
16 function AutoFillOptions() {
17 this.activeNavTab = null;
18 OptionsPage.call(this, 'autoFillOptions',
19 templateData.autoFillOptionsTitle,
20 'autoFillOptionsPage');
21 }
22
23 cr.addSingletonGetter(AutoFillOptions);
24
25 AutoFillOptions.prototype = {
26 __proto__: OptionsPage.prototype,
27
28 initializePage: function() {
29 OptionsPage.prototype.initializePage.call(this);
30
31 // TODO(jhawkins): Add initialization here.
32 }
33 };
34
35 // Export
36 return {
37 AutoFillOptions: AutoFillOptions
38 };
39
40 });
41
OLDNEW
« no previous file with comments | « chrome/browser/resources/options/autofill_options.html ('k') | chrome/browser/resources/options/personal_options.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698