| 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;
|
| -}
|
|
|