1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef CHROME_BROWSER_AUTOFILL_FAX_NUMBER_H_ 6 #define CHROME_BROWSER_AUTOFILL_FAX_NUMBER_H_ 7 #pragma once 8 9 #include "chrome/browser/autofill/field_types.h" 10 #include "chrome/browser/autofill/phone_number.h" 11 12 class FaxNumber : public PhoneNumber { 13 public: 14 FaxNumber(); 15 FaxNumber(const FaxNumber& fax); 16 virtual ~FaxNumber(); 17 18 FaxNumber& operator=(const FaxNumber& fax); 19 20 protected: 21 virtual AutofillFieldType GetNumberType() const; 22 virtual AutofillFieldType GetCityCodeType() const; 23 virtual AutofillFieldType GetCountryCodeType() const; 24 virtual AutofillFieldType GetCityAndNumberType() const; 25 virtual AutofillFieldType GetWholeNumberType() const; 26 }; 27 28 #endif // CHROME_BROWSER_AUTOFILL_FAX_NUMBER_H_ 29