blob: ced29225f4351e9ba25b37a7f91fd9662c86993e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
// 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.
#ifndef CHROME_BROWSER_AUTOFILL_HOME_ADDRESS_H_
#define CHROME_BROWSER_AUTOFILL_HOME_ADDRESS_H_
#pragma once
#include "chrome/browser/autofill/address.h"
#include "chrome/browser/autofill/field_types.h"
class FormGroup;
// A specialization of Address that identifies itself as a home address.
class HomeAddress : public Address {
public:
HomeAddress() {}
FormGroup* Clone() const { return new HomeAddress(*this); }
protected:
virtual AutoFillFieldType GetLine1Type() const {
return ADDRESS_HOME_LINE1;
}
virtual AutoFillFieldType GetLine2Type() const {
return ADDRESS_HOME_LINE2;
}
virtual AutoFillFieldType GetAptNumType() const {
return ADDRESS_HOME_APT_NUM;
}
virtual AutoFillFieldType GetCityType() const {
return ADDRESS_HOME_CITY;
}
virtual AutoFillFieldType GetStateType() const {
return ADDRESS_HOME_STATE;
}
virtual AutoFillFieldType GetZipCodeType() const {
return ADDRESS_HOME_ZIP;
}
virtual AutoFillFieldType GetCountryType() const {
return ADDRESS_HOME_COUNTRY;
}
private:
explicit HomeAddress(const HomeAddress& address) : Address(address) {}
void operator=(const HomeAddress& address); // Not implemented.
};
#endif // CHROME_BROWSER_AUTOFILL_HOME_ADDRESS_H_
|