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

Unified Diff: chrome/browser/autofill/home_phone_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/form_group.h ('k') | chrome/browser/autofill/home_phone_number.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/home_phone_number.h
diff --git a/chrome/browser/autofill/home_phone_number.h b/chrome/browser/autofill/home_phone_number.h
index c24df79f399142e00879c58c6d11cca32d34ce38..a9e0d1456fa1cfa1865fba46f29476cf573c7cc6 100644
--- a/chrome/browser/autofill/home_phone_number.h
+++ b/chrome/browser/autofill/home_phone_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.
@@ -12,8 +12,11 @@ class FormGroup;
class HomePhoneNumber : public PhoneNumber {
public:
- HomePhoneNumber() {}
- virtual FormGroup* Clone() const;
+ HomePhoneNumber();
+ explicit HomePhoneNumber(const HomePhoneNumber& phone);
+ virtual ~HomePhoneNumber();
+
+ HomePhoneNumber& operator=(const HomePhoneNumber& phone);
protected:
virtual AutofillFieldType GetNumberType() const;
@@ -21,10 +24,6 @@ class HomePhoneNumber : public PhoneNumber {
virtual AutofillFieldType GetCountryCodeType() const;
virtual AutofillFieldType GetCityAndNumberType() const;
virtual AutofillFieldType GetWholeNumberType() const;
-
- private:
- explicit HomePhoneNumber(const HomePhoneNumber& phone) : PhoneNumber(phone) {}
- void operator=(const HomePhoneNumber& phone);
};
#endif // CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_
« no previous file with comments | « chrome/browser/autofill/form_group.h ('k') | chrome/browser/autofill/home_phone_number.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698