summaryrefslogtreecommitdiffstats
path: root/chrome/browser/autofill/autofill-inl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/browser/autofill/autofill-inl.h')
-rw-r--r--chrome/browser/autofill/autofill-inl.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/browser/autofill/autofill-inl.h b/chrome/browser/autofill/autofill-inl.h
index 4d90324..30e2abf 100644
--- a/chrome/browser/autofill/autofill-inl.h
+++ b/chrome/browser/autofill/autofill-inl.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
@@ -14,11 +14,11 @@ class FormGroupMatchesByCompareFunctor {
}
bool operator()(const T* form_group) {
- return form_group->CompareMulti(form_group_) == 0;
+ return form_group->Compare(form_group_) == 0;
}
bool operator()(const T& form_group) {
- return form_group.CompareMulti(form_group_) == 0;
+ return form_group.Compare(form_group_) == 0;
}
private: