diff options
author | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 21:35:26 +0000 |
---|---|---|
committer | isherman@chromium.org <isherman@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-03-28 21:35:26 +0000 |
commit | da0ffc2445b23070b1e65722bfcaf16dd47affdf (patch) | |
tree | 89522a67ad1fba384b6db10ceb64ae9d3534def6 /chrome/browser/resources | |
parent | cafd1d71d9685cca5d309038914dde2907fadb28 (diff) | |
download | chromium_src-da0ffc2445b23070b1e65722bfcaf16dd47affdf.zip chromium_src-da0ffc2445b23070b1e65722bfcaf16dd47affdf.tar.gz chromium_src-da0ffc2445b23070b1e65722bfcaf16dd47affdf.tar.bz2 |
AutoFill -> Autofill Part N
BUG=72758
TEST=none
Review URL: http://codereview.chromium.org/6713095
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@79617 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/resources')
6 files changed, 19 insertions, 19 deletions
diff --git a/chrome/browser/resources/options/autofill_edit_address_overlay.js b/chrome/browser/resources/options/autofill_edit_address_overlay.js index 99e2a10..c1ce694 100644 --- a/chrome/browser/resources/options/autofill_edit_address_overlay.js +++ b/chrome/browser/resources/options/autofill_edit_address_overlay.js @@ -14,8 +14,8 @@ cr.define('options', function() { * @class */ function AutofillEditAddressOverlay() { - OptionsPage.call(this, 'autoFillEditAddress', - templateData.autoFillEditAddressTitle, + OptionsPage.call(this, 'autofillEditAddress', + templateData.autofillEditAddressTitle, 'autofill-edit-address-overlay'); } diff --git a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.js b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.js index 300bed3..b58cb14 100644 --- a/chrome/browser/resources/options/autofill_edit_creditcard_overlay.js +++ b/chrome/browser/resources/options/autofill_edit_creditcard_overlay.js @@ -14,8 +14,8 @@ cr.define('options', function() { * @class */ function AutofillEditCreditCardOverlay() { - OptionsPage.call(this, 'autoFillEditCreditCard', - templateData.autoFillEditCreditCardTitle, + OptionsPage.call(this, 'autofillEditCreditCard', + templateData.autofillEditCreditCardTitle, 'autofill-edit-credit-card-overlay'); } diff --git a/chrome/browser/resources/options/autofill_options.html b/chrome/browser/resources/options/autofill_options.html index 507c02e..ac66726 100644 --- a/chrome/browser/resources/options/autofill_options.html +++ b/chrome/browser/resources/options/autofill_options.html @@ -1,5 +1,5 @@ <div id="autofill-options" class="page hidden"> - <h1 i18n-content="autoFillOptionsPage"></h1> + <h1 i18n-content="autofillOptionsPage"></h1> <if expr="os == 'darwin'"> <div class="checkbox"> <label> @@ -8,20 +8,20 @@ </label> </div> </if> - <h3 i18n-content="autoFillAddresses"></h3> + <h3 i18n-content="autofillAddresses"></h3> <div class="settings-list"> <list id="address-list"></list> <div> - <button id="autofill-add-address" i18n-content="autoFillAddAddress"> + <button id="autofill-add-address" i18n-content="autofillAddAddress"> </button> </div> </div> - <h3 i18n-content="autoFillCreditCards"></h3> + <h3 i18n-content="autofillCreditCards"></h3> <div class="settings-list"> <list id="creditcard-list"></list> <div> <button id="autofill-add-creditcard" - i18n-content="autoFillAddCreditCard"></button> + i18n-content="autofillAddCreditCard"></button> </div> </div> <div> diff --git a/chrome/browser/resources/options/autofill_options.js b/chrome/browser/resources/options/autofill_options.js index f58dd2f..0b3a305 100644 --- a/chrome/browser/resources/options/autofill_options.js +++ b/chrome/browser/resources/options/autofill_options.js @@ -16,7 +16,7 @@ cr.define('options', function() { function AutofillOptions() { OptionsPage.call(this, 'autofill', - templateData.autoFillOptionsPageTabTitle, + templateData.autofillOptionsPageTabTitle, 'autofill-options'); } @@ -63,7 +63,7 @@ cr.define('options', function() { */ createAddressList_: function() { this.addressList_ = $('address-list'); - options.autoFillOptions.AutofillAddressList.decorate(this.addressList_); + options.autofillOptions.AutofillAddressList.decorate(this.addressList_); this.addressList_.autoExpands = true; }, @@ -73,7 +73,7 @@ cr.define('options', function() { */ createCreditCardList_: function() { this.creditCardList_ = $('creditcard-list'); - options.autoFillOptions.AutofillCreditCardList.decorate( + options.autofillOptions.AutofillCreditCardList.decorate( this.creditCardList_); this.creditCardList_.autoExpands = true; }, @@ -88,7 +88,7 @@ cr.define('options', function() { var title = localStrings.getString('addAddressTitle'); AutofillEditAddressOverlay.setTitle(title); AutofillEditAddressOverlay.clearInputFields(); - OptionsPage.navigateToPage('autoFillEditAddress'); + OptionsPage.navigateToPage('autofillEditAddress'); }, /** @@ -101,7 +101,7 @@ cr.define('options', function() { var title = localStrings.getString('addCreditCardTitle'); AutofillEditCreditCardOverlay.setTitle(title); AutofillEditCreditCardOverlay.clearInputFields(); - OptionsPage.navigateToPage('autoFillEditCreditCard'); + OptionsPage.navigateToPage('autofillEditCreditCard'); }, /** @@ -172,7 +172,7 @@ cr.define('options', function() { var title = localStrings.getString('editAddressTitle'); AutofillEditAddressOverlay.setTitle(title); AutofillEditAddressOverlay.loadAddress(address); - OptionsPage.navigateToPage('autoFillEditAddress'); + OptionsPage.navigateToPage('autofillEditAddress'); }, /** @@ -185,7 +185,7 @@ cr.define('options', function() { var title = localStrings.getString('editCreditCardTitle'); AutofillEditCreditCardOverlay.setTitle(title); AutofillEditCreditCardOverlay.loadCreditCard(creditCard); - OptionsPage.navigateToPage('autoFillEditCreditCard'); + OptionsPage.navigateToPage('autofillEditCreditCard'); }, }; diff --git a/chrome/browser/resources/options/autofill_options_list.js b/chrome/browser/resources/options/autofill_options_list.js index a9c8a33..b90bbb7 100644 --- a/chrome/browser/resources/options/autofill_options_list.js +++ b/chrome/browser/resources/options/autofill_options_list.js @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. -cr.define('options.autoFillOptions', function() { +cr.define('options.autofillOptions', function() { const DeletableItem = options.DeletableItem; const DeletableItemList = options.DeletableItemList; diff --git a/chrome/browser/resources/options/personal_options.html b/chrome/browser/resources/options/personal_options.html index 306f8bb..d4b3f41 100644 --- a/chrome/browser/resources/options/personal_options.html +++ b/chrome/browser/resources/options/personal_options.html @@ -77,9 +77,9 @@ <div> <div class="checkbox"> <label> - <input id="autoFillEnabled" pref="autofill.enabled" + <input id="autofillEnabled" pref="autofill.enabled" metric="Options_FormAutofill" type="checkbox"> - <span i18n-content="autoFillEnabled"></span> + <span i18n-content="autofillEnabled"></span> </label> </div> <button id="autofill-settings" |