summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/form_group.cc
diff options
context:
space:
mode:
authordhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 15:25:57 +0000
committerdhollowa@chromium.org <dhollowa@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-27 15:25:57 +0000
commite94f1860db455c3af9e8e245505b2335e5cf1be5 (patch)
tree8be682860612b86d5aa28d124538f44a8bc1a8f4 /chrome/browser/autofill/form_group.cc
parent809cc4d808f30112929ef9c33183e6cc052d3f88 (diff)
downloadchromium_src-e94f1860db455c3af9e8e245505b2335e5cf1be5.zip
chromium_src-e94f1860db455c3af9e8e245505b2335e5cf1be5.tar.gz
chromium_src-e94f1860db455c3af9e8e245505b2335e5cf1be5.tar.bz2
Autofill deprecate unique_ids in favor of guids for Mac UI
Removes use of labels and unique_ids in the Mac UI for Autofill. BUG=58813 TEST=AutoFillAddressModelTest.*:AutoFillAddressSheetControllerTest.*:AutoFillCreditCardModelTest.*:AutoFillDialogControllerTest.* Review URL: http://codereview.chromium.org/4110004 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@64073 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/autofill/form_group.cc')
-rw-r--r--chrome/browser/autofill/form_group.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/autofill/form_group.cc b/chrome/browser/autofill/form_group.cc
index e99059b..7e91bc3 100644
--- a/chrome/browser/autofill/form_group.cc
+++ b/chrome/browser/autofill/form_group.cc
@@ -8,7 +8,7 @@ string16 FormGroup::GetPreviewText(const AutoFillType& type) const {
return GetFieldText(type);
}
-const string16& FormGroup::Label() const { return EmptyString16(); }
+const string16 FormGroup::Label() const { return string16(); }
bool FormGroup::operator!=(const FormGroup& form_group) const {
FieldTypeSet a, b, symmetric_difference;