| 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
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..f48efa8cc5b3d2c1971082e10b0c9808a03bc61d
|
| --- /dev/null
|
| +++ b/chrome/browser/autofill/home_phone_number.cc
|
| @@ -0,0 +1,29 @@
|
| +// Copyright (c) 2010 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"
|
| +
|
| +FormGroup* HomePhoneNumber::Clone() const {
|
| + return new HomePhoneNumber(*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;
|
| +}
|
|
|