diff options
Diffstat (limited to 'chrome/browser/autofill/home_phone_number.h')
-rw-r--r-- | chrome/browser/autofill/home_phone_number.h | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/chrome/browser/autofill/home_phone_number.h b/chrome/browser/autofill/home_phone_number.h deleted file mode 100644 index eee1162..0000000 --- a/chrome/browser/autofill/home_phone_number.h +++ /dev/null @@ -1,29 +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. - -#ifndef CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_ -#define CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_ -#pragma once - -#include "chrome/browser/autofill/phone_number.h" - -class FormGroup; - -class HomePhoneNumber : public PhoneNumber { - public: - explicit HomePhoneNumber(AutofillProfile* profile); - HomePhoneNumber(const HomePhoneNumber& phone); - virtual ~HomePhoneNumber(); - - HomePhoneNumber& operator=(const HomePhoneNumber& phone); - - protected: - virtual AutofillFieldType GetNumberType() const; - virtual AutofillFieldType GetCityCodeType() const; - virtual AutofillFieldType GetCountryCodeType() const; - virtual AutofillFieldType GetCityAndNumberType() const; - virtual AutofillFieldType GetWholeNumberType() const; -}; - -#endif // CHROME_BROWSER_AUTOFILL_HOME_PHONE_NUMBER_H_ |