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

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

Issue 7892048: Autofill: Remove fax number completely. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: 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
Index: chrome/browser/autofill/fax_number.cc
diff --git a/chrome/browser/autofill/fax_number.cc b/chrome/browser/autofill/fax_number.cc
deleted file mode 100644
index baef644f4bdd95b25278c2965638854c7b6df4c1..0000000000000000000000000000000000000000
--- a/chrome/browser/autofill/fax_number.cc
+++ /dev/null
@@ -1,39 +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/fax_number.h"
-
-FaxNumber::FaxNumber(AutofillProfile* profile) : PhoneNumber(profile) {
-}
-
-FaxNumber::FaxNumber(const FaxNumber& fax) : PhoneNumber(fax) {
-}
-
-FaxNumber::~FaxNumber() {
-}
-
-FaxNumber& FaxNumber::operator=(const FaxNumber& fax) {
- PhoneNumber::operator=(fax);
- return *this;
-}
-
-AutofillFieldType FaxNumber::GetNumberType() const {
- return PHONE_FAX_NUMBER;
-}
-
-AutofillFieldType FaxNumber::GetCityCodeType() const {
- return PHONE_FAX_CITY_CODE;
-}
-
-AutofillFieldType FaxNumber::GetCountryCodeType() const {
- return PHONE_FAX_COUNTRY_CODE;
-}
-
-AutofillFieldType FaxNumber::GetCityAndNumberType() const {
- return PHONE_FAX_CITY_AND_NUMBER;
-}
-
-AutofillFieldType FaxNumber::GetWholeNumberType() const {
- return PHONE_FAX_WHOLE_NUMBER;
-}

Powered by Google App Engine
This is Rietveld 408576698