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

Unified Diff: chrome/browser/autofill/fax_number.h

Issue 6650014: Autofill extend profiles to include multi-valued fields, part 2. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Nit Created 9 years, 9 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/browser/autofill/credit_card.cc ('k') | chrome/browser/autofill/fax_number.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/fax_number.h
diff --git a/chrome/browser/autofill/fax_number.h b/chrome/browser/autofill/fax_number.h
index 75d65750aae5ddc56960f683f54e15312f9009b8..3fdc59e70e88bed99548da719387144bec5ff8e0 100644
--- a/chrome/browser/autofill/fax_number.h
+++ b/chrome/browser/autofill/fax_number.h
@@ -1,4 +1,4 @@
-// Copyright (c) 2010 The Chromium Authors. All rights reserved.
+// Copyright (c) 2011 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.
@@ -13,9 +13,10 @@ class FormGroup;
class FaxNumber : public PhoneNumber {
public:
FaxNumber();
+ explicit FaxNumber(const FaxNumber& fax);
virtual ~FaxNumber();
- virtual FormGroup* Clone() const;
+ FaxNumber& operator=(const FaxNumber& fax);
protected:
virtual AutofillFieldType GetNumberType() const;
@@ -23,10 +24,6 @@ class FaxNumber : public PhoneNumber {
virtual AutofillFieldType GetCountryCodeType() const;
virtual AutofillFieldType GetCityAndNumberType() const;
virtual AutofillFieldType GetWholeNumberType() const;
-
- private:
- explicit FaxNumber(const FaxNumber& phone) : PhoneNumber(phone) {}
- void operator=(const FaxNumber& phone);
};
#endif // CHROME_BROWSER_AUTOFILL_FAX_NUMBER_H_
« no previous file with comments | « chrome/browser/autofill/credit_card.cc ('k') | chrome/browser/autofill/fax_number.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698