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

Unified Diff: chrome/browser/autofill/autofill_type.h

Issue 1789001: AutoFill crash in CreditCard::SetInfo(). (Closed)
Patch Set: Virtual back to original. Created 10 years, 8 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/autofill/autofill_type.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/autofill/autofill_type.h
diff --git a/chrome/browser/autofill/autofill_type.h b/chrome/browser/autofill/autofill_type.h
index 18d093c732a85d3ea156172d3ded1f469478b065..0fc692aa3e8dbec63f9d5c0940f525452f64e79b 100644
--- a/chrome/browser/autofill/autofill_type.h
+++ b/chrome/browser/autofill/autofill_type.h
@@ -46,32 +46,20 @@ class AutoFillType {
};
struct AutoFillTypeDefinition {
- AutoFillFieldType field_type;
FieldTypeGroup group;
FieldTypeSubGroup subgroup;
- std::string name;
};
- AutoFillType() {}
- explicit AutoFillType(AutoFillTypeDefinition* definition);
explicit AutoFillType(AutoFillFieldType field_type);
+ AutoFillType(const AutoFillType& autofill_type);
+ AutoFillType& operator=(const AutoFillType& autofill_type);
- AutoFillFieldType field_type() const {
- return autofill_type_definition_->field_type;
- }
- FieldTypeGroup group() const { return autofill_type_definition_->group; }
- FieldTypeSubGroup subgroup() const {
- return autofill_type_definition_->subgroup;
- }
+ AutoFillFieldType field_type() const;
+ FieldTypeGroup group() const;
+ FieldTypeSubGroup subgroup() const;
private:
- static void StaticInitialize();
- static void InitializeFieldTypeMap();
-
- static bool initialized_;
- static AutoFillType types_[MAX_VALID_FIELD_TYPE + 1];
-
- const AutoFillTypeDefinition* autofill_type_definition_;
+ AutoFillFieldType field_type_;
};
typedef AutoFillType::FieldTypeGroup FieldTypeGroup;
« no previous file with comments | « no previous file | chrome/browser/autofill/autofill_type.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698