Home
last modified time | relevance | path

Searched refs:OptionsPage (Results 1 – 25 of 40) sorted by relevance

12

/external/chromium/chrome/browser/resources/options/
Doptions.js21 var OptionsPage = options.OptionsPage; variable
55 OptionsPage.register(SearchPage.getInstance());
57 OptionsPage.register(BrowserOptions.getInstance());
58 OptionsPage.registerSubPage(SearchEngineManager.getInstance(),
61 OptionsPage.register(PersonalOptions.getInstance());
62 OptionsPage.registerSubPage(AutofillOptions.getInstance(),
65 OptionsPage.registerSubPage(PasswordManager.getInstance(),
69 OptionsPage.register(SystemOptions.getInstance());
70 OptionsPage.registerSubPage(AboutPage.getInstance(),
72 OptionsPage.registerSubPage(LanguageOptions.getInstance(),
[all …]
Doptions_page.js18 function OptionsPage(name, title, pageDivName) { class
33 OptionsPage.registeredPages = {};
39 OptionsPage.registeredOverlayPages = {};
45 OptionsPage.initialized_ = false;
50 OptionsPage.getDefaultPage = function() {
57 OptionsPage.showDefaultPage = function() {
66 OptionsPage.navigateToPage = function(pageName) {
77 OptionsPage.showPageByName = function(pageName, updateHistory) {
152 OptionsPage.updateSubpageBackdrop_ = function () {
172 OptionsPage.updateHistoryState_ = function() {
[all …]
Dinstant_confirm_overlay.js6 var OptionsPage = options.OptionsPage;
9 OptionsPage.call(this, 'instantConfirm',
18 __proto__: OptionsPage.prototype,
21 OptionsPage.prototype.initializePage.call(this); class
24 OptionsPage.closeOverlay();
27 OptionsPage.closeOverlay();
Dcertificate_import_error_overlay.js7 var OptionsPage = options.OptionsPage;
15 OptionsPage.call(this, 'certificateImportErrorOverlay', '',
23 __proto__: OptionsPage.prototype,
30 OptionsPage.prototype.initializePage.call(this); class
33 OptionsPage.closeOverlay();
60 OptionsPage.navigateToPage('certificateImportErrorOverlay');
Dcertificate_restore_overlay.js6 const OptionsPage = options.OptionsPage;
14 OptionsPage.call(this, 'certificateRestore',
22 __proto__: OptionsPage.prototype,
28 OptionsPage.prototype.initializePage.call(this); class
47 OptionsPage.closeOverlay();
85 OptionsPage.navigateToPage('certificateRestore');
Dalert_overlay.js6 var OptionsPage = options.OptionsPage;
14 OptionsPage.call(this, 'alertOverlay', '', 'alertOverlay');
21 __proto__: OptionsPage.prototype,
35 OptionsPage.prototype.initializePage.call(this); class
53 OptionsPage.closeOverlay();
65 OptionsPage.closeOverlay();
137 OptionsPage.showPageByName('alertOverlay', false);
Dcertificate_backup_overlay.js6 const OptionsPage = options.OptionsPage;
14 OptionsPage.call(this, 'certificateBackupOverlay',
22 __proto__: OptionsPage.prototype,
28 OptionsPage.prototype.initializePage.call(this); class
51 OptionsPage.closeOverlay();
105 OptionsPage.navigateToPage('certificateBackupOverlay');
Dadvanced_options.js7 var OptionsPage = options.OptionsPage;
14 OptionsPage.call(this, 'advanced', templateData.advancedPageTabTitle,
22 __proto__: options.OptionsPage.prototype,
29 OptionsPage.prototype.initializePage.call(this); class
33 OptionsPage.navigateToPage('content');
34 OptionsPage.showTab($('cookies-nav-tab'));
39 OptionsPage.navigateToPage('clearBrowserData');
59 OptionsPage.navigateToPage('fonts');
67 OptionsPage.navigateToPage('languages');
78 OptionsPage.navigateToPage('certificates');
[all …]
Dcontent_settings.js7 var OptionsPage = options.OptionsPage;
18 OptionsPage.call(this, 'content', templateData.contentSettingsPageTabTitle,
25 __proto__: OptionsPage.prototype,
28 OptionsPage.prototype.initializePage.call(this); class
39 OptionsPage.navigateToPage('contentExceptions');
56 OptionsPage.navigateToPage('cookies');
80 OptionsPage.updateManagedBannerVisibility();
Dautofill_options.js6 const OptionsPage = options.OptionsPage;
17 OptionsPage.call(this,
26 __proto__: OptionsPage.prototype,
43 OptionsPage.prototype.initializePage.call(this); class
91 OptionsPage.navigateToPage('autofillEditAddress');
104 OptionsPage.navigateToPage('autofillEditCreditCard');
175 OptionsPage.navigateToPage('autofillEditAddress');
188 OptionsPage.navigateToPage('autofillEditCreditCard');
Dpersonal_options.js7 var OptionsPage = options.OptionsPage;
18 OptionsPage.call(this, 'personal',
27 __proto__: options.OptionsPage.prototype,
32 OptionsPage.prototype.initializePage.call(this); class
51 OptionsPage.navigateToPage('passwords');
52 OptionsPage.showTab($('passwords-nav-tab'));
57 OptionsPage.navigateToPage('autofill');
67 OptionsPage.navigateToPage('importData');
78 OptionsPage.navigateToPage('changePicture');
Dlanguage_add_language_overlay.js9 const OptionsPage = options.OptionsPage;
16 OptionsPage.call(this, 'addLanguage',
25 __proto__: OptionsPage.prototype,
33 OptionsPage.prototype.initializePage.call(this); class
37 OptionsPage.closeOverlay();
Dcertificate_edit_ca_trust_overlay.js6 const OptionsPage = options.OptionsPage;
14 OptionsPage.call(this, 'certificateEditCaTrustOverlay',
22 __proto__: OptionsPage.prototype,
29 OptionsPage.closeOverlay();
129 OptionsPage.navigateToPage('certificateEditCaTrustOverlay');
153 OptionsPage.navigateToPage('certificateEditCaTrustOverlay');
Dclear_browser_data_overlay.js6 var OptionsPage = options.OptionsPage;
14 OptionsPage.call(this, 'clearBrowserData',
23 __proto__: OptionsPage.prototype,
30 OptionsPage.prototype.initializePage.call(this); class
102 OptionsPage.closeOverlay();
Dsearch_engine_manager.js6 const OptionsPage = options.OptionsPage;
15 OptionsPage.call(this, 'searchEngines',
23 __proto__: OptionsPage.prototype,
41 OptionsPage.prototype.initializePage.call(this); class
Dsearch_page.js6 const OptionsPage = options.OptionsPage;
106 OptionsPage.call(this, 'search', templateData.searchPageTabTitle,
115 __proto__: OptionsPage.prototype,
122 OptionsPage.prototype.initializePage.call(this); class
274 OptionsPage.navigateToPage(this.name);
277 OptionsPage.showDefaultPage();
483 for (name in OptionsPage.registeredPages) {
485 page = OptionsPage.registeredPages[name];
501 for (name in OptionsPage.registeredPages) {
502 page = OptionsPage.registeredPages[name];
[all …]
Dcookies_view.js7 var OptionsPage = options.OptionsPage;
17 OptionsPage.call(this, 'cookies',
25 __proto__: OptionsPage.prototype,
28 OptionsPage.prototype.initializePage.call(this); class
Dpassword_manager.js6 const OptionsPage = options.OptionsPage;
18 OptionsPage.call(this,
27 __proto__: OptionsPage.prototype,
45 OptionsPage.prototype.initializePage.call(this); class
Dimport_data_overlay.js6 var OptionsPage = options.OptionsPage;
14 OptionsPage.call(this,
24 __proto__: OptionsPage.prototype,
31 OptionsPage.prototype.initializePage.call(this); class
178 OptionsPage.closeOverlay();
Dautofill_edit_creditcard_overlay.js6 const OptionsPage = options.OptionsPage;
17 OptionsPage.call(this, 'autofillEditCreditCard',
25 __proto__: OptionsPage.prototype,
31 OptionsPage.prototype.initializePage.call(this); class
57 OptionsPage.closeOverlay();
/external/chromium/chrome/browser/resources/options/chromeos/
Dsystem_options.js7 var OptionsPage = options.OptionsPage;
17 OptionsPage.call(this, 'system', templateData.systemPageTabTitle,
25 __proto__: options.OptionsPage.prototype,
32 OptionsPage.prototype.initializePage.call(this); class
42 OptionsPage.navigateToPage('language');
45 OptionsPage.navigateToPage('languageCustomizeModifierKeysOverlay');
Dchange_picture_options.js7 var OptionsPage = options.OptionsPage;
17 OptionsPage.call(
28 __proto__: options.OptionsPage.prototype,
35 OptionsPage.prototype.initializePage.call(this); class
53 OptionsPage.navigateToPage('personal');
63 OptionsPage.navigateToPage('personal');
73 OptionsPage.navigateToPage('personal');
Daccounts_options.js7 var OptionsPage = options.OptionsPage;
17 OptionsPage.call(this, 'accounts', templateData.accountsPageTabTitle,
25 __proto__: OptionsPage.prototype,
32 OptionsPage.prototype.initializePage.call(this); class
Dinternet_options.js6 var OptionsPage = options.OptionsPage;
16 OptionsPage.call(this, 'internet', templateData.internetPageTabTitle,
24 __proto__: OptionsPage.prototype,
31 OptionsPage.prototype.initializePage.call(this); class
79 OptionsPage.closeOverlay();
153 OptionsPage.closeOverlay();
164 OptionsPage.closeOverlay();
175 OptionsPage.closeOverlay();
350 OptionsPage.showTab($('wifiNetworkNavTab'));
367 OptionsPage.showTab($('cellularPlanNavTab'));
[all …]
Dproxy_options.js7 var OptionsPage = options.OptionsPage;
18 OptionsPage.call(this, 'proxy', localStrings.getString('proxyPage'),
40 __proto__: OptionsPage.prototype,
47 OptionsPage.prototype.initializePage.call(this); class

12