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

Unified Diff: chrome/browser/autofill/home_phone_number.cc

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Comment fix. Created 9 years, 3 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/home_phone_number.h ('k') | chrome/browser/autofill/personal_data_manager.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.cc
diff --git a/chrome/browser/autofill/home_phone_number.cc b/chrome/browser/autofill/home_phone_number.cc
deleted file mode 100644
index 6f4eceaf805581fb9899a742a6990e9b5b22ad1a..0000000000000000000000000000000000000000
--- a/chrome/browser/autofill/home_phone_number.cc
+++ /dev/null
@@ -1,41 +0,0 @@
-// 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.
-
-#include "chrome/browser/autofill/home_phone_number.h"
-
-HomePhoneNumber::HomePhoneNumber(AutofillProfile* profile)
- : PhoneNumber(profile) {
-}
-
-HomePhoneNumber::HomePhoneNumber(const HomePhoneNumber& phone)
- : PhoneNumber(phone) {
-}
-
-HomePhoneNumber::~HomePhoneNumber() {
-}
-
-HomePhoneNumber& HomePhoneNumber::operator=(const HomePhoneNumber& phone) {
- PhoneNumber::operator=(phone);
- return *this;
-}
-
-AutofillFieldType HomePhoneNumber::GetNumberType() const {
- return PHONE_HOME_NUMBER;
-}
-
-AutofillFieldType HomePhoneNumber::GetCityCodeType() const {
- return PHONE_HOME_CITY_CODE;
-}
-
-AutofillFieldType HomePhoneNumber::GetCountryCodeType() const {
- return PHONE_HOME_COUNTRY_CODE;
-}
-
-AutofillFieldType HomePhoneNumber::GetCityAndNumberType() const {
- return PHONE_HOME_CITY_AND_NUMBER;
-}
-
-AutofillFieldType HomePhoneNumber::GetWholeNumberType() const {
- return PHONE_HOME_WHOLE_NUMBER;
-}
« no previous file with comments | « chrome/browser/autofill/home_phone_number.h ('k') | chrome/browser/autofill/personal_data_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698