Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(287)

Side by Side Diff: chrome/browser/autofill/autofill_profile.h

Issue 517066: Implement AutoFillProfile, a collection of form groups that stores profile in... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « chrome/browser/autofill/address_field.cc ('k') | chrome/browser/autofill/autofill_profile.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Property Changes:
Added: svn:eol-style
+ LF
OLDNEW
(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_
OLDNEW
« no previous file with comments | « chrome/browser/autofill/address_field.cc ('k') | chrome/browser/autofill/autofill_profile.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698