OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2010 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_AUTOFILL_PROFILE_H_ |
| 6 #define CHROME_BROWSER_AUTOFILL_AUTOFILL_PROFILE_H_ |
| 7 |
| 8 #include <map> |
| 9 #include <vector> |
| 10 |
| 11 #include "base/string16.h" |
| 12 #include "chrome/browser/autofill/form_group.h" |
| 13 |
| 14 class Address; |
| 15 typedef std::map<FieldTypeGroup, FormGroup*> FormGroupMap; |
| 16 |
| 17 // A collection of FormGroups stored in a profile. AutoFillProfile also |
| 18 // implements the FormGroup interface so that owners of this object can request |
| 19 // form information from the profile, and the profile will delegate the request |
| 20 // to the requested form group type. |
| 21 class AutoFillProfile : public FormGroup { |
| 22 public: |
| 23 AutoFillProfile(const string16& label, int unique_id); |
| 24 virtual ~AutoFillProfile(); |
| 25 |
| 26 // FormGroup implementation: |
| 27 virtual void GetPossibleFieldTypes(const string16& text, |
| 28 FieldTypeSet* possible_types) const; |
| 29 virtual string16 GetFieldText(const AutoFillType& type) const; |
| 30 // Returns true if the info matches the profile data corresponding to type. |
| 31 // If the type is UNKNOWN_TYPE then info will be matched against all of the |
| 32 // profile data. |
| 33 virtual void FindInfoMatches(const AutoFillType& type, |
| 34 const string16& info, |
| 35 std::vector<string16>* matched_text) const; |
| 36 virtual void SetInfo(const AutoFillType& type, const string16& value); |
| 37 // Returns a copy of the profile it is called on. The caller is responsible |
| 38 // for deleting profile when they are done with it. |
| 39 virtual FormGroup* Clone() const; |
| 40 virtual string16 Label() const { return label_; } |
| 41 |
| 42 // NOTE: callers must write the profile to the WebDB after changing the value |
| 43 // of use_billing_address. |
| 44 void set_use_billing_address(bool use); |
| 45 bool use_billing_address() const { return use_billing_address_; } |
| 46 |
| 47 int unique_id() const { return unique_id_; } |
| 48 |
| 49 // TODO(jhawkins): Implement RemoveProfile. |
| 50 |
| 51 private: |
| 52 // This constructor should only be used by the copy constructor. |
| 53 AutoFillProfile() {} |
| 54 |
| 55 Address* GetBillingAddress(); |
| 56 Address* GetHomeAddress(); |
| 57 |
| 58 // The label presented to the user when selecting a profile. |
| 59 string16 label_; |
| 60 |
| 61 // The unique ID of this profile. |
| 62 int unique_id_; |
| 63 |
| 64 // If true, the billing address will be used for the home address. Correlates |
| 65 // with the "Use billing address" option on some billing forms. |
| 66 bool use_billing_address_; |
| 67 |
| 68 // Personal information for this profile. |
| 69 FormGroupMap personal_info_; |
| 70 |
| 71 DISALLOW_COPY_AND_ASSIGN(AutoFillProfile); |
| 72 }; |
| 73 |
| 74 #endif // CHROME_BROWSER_AUTOFILL_AUTOFILL_PROFILE_H_ |
OLD | NEW |